Add: Starting kernel repos

This commit is contained in:
brice.boisson
2023-09-04 23:14:06 +09:00
commit c0c4dbc665
31 changed files with 1232 additions and 0 deletions

9
src/int.h Normal file
View File

@@ -0,0 +1,9 @@
#ifndef INT_H
#define INT_H
void _asm_default_int(void);
void _asm_irq_0(void);
void _asm_irq_1(void);
int _asm_sycall_handler(int eax, int ebx);
#endif /* !INT_H */