dead@root

This commit is contained in:
2024-05-25 19:20:33 +03:00
commit ea8f6b4ce0
39 changed files with 1769 additions and 0 deletions

8
sys.h Normal file
View File

@@ -0,0 +1,8 @@
#ifndef _KERNEL_SYS_H
#define _KERNEL_SYS_H
void sys_halt(void);
void sys_enable_interrupts(void);
void sys_disable_interrupts(void);
#endif