FENIX_kernel/include/kernel/init.h

13 lines
165 B
C
Raw Normal View History

2020-12-02 02:59:33 +00:00
#ifndef _KERNEL_INIT
#define _KERNEL_INIT
#include <stdio.h>
2020-12-18 18:38:32 +00:00
extern int tss[16][2];
extern unsigned short int * GDT;
2020-12-02 02:59:33 +00:00
int test_libc(void);
int init(void);
#endif