diff options
Diffstat (limited to 'Source/Kernel/Core/Sys.ns.h')
-rw-r--r-- | Source/Kernel/Core/Sys.ns.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Source/Kernel/Core/Sys.ns.h b/Source/Kernel/Core/Sys.ns.h index 9a2975e..69dcc42 100644 --- a/Source/Kernel/Core/Sys.ns.h +++ b/Source/Kernel/Core/Sys.ns.h @@ -4,6 +4,8 @@ #ifndef DEF_SYS_NS_H #define DEF_SYS_NS_H +//This file contains system-relative functions + namespace Sys { void outb(u16int port, u8int value); u8int inb(u16int port); @@ -11,6 +13,7 @@ namespace Sys { void panic(char* message, char *file, u32int line); void panic_assert(char* file, u32int line, char *desc); void bochs_output(char* message, char *file, u32int line); + void bochs_output_hex(u32int i); void reboot(); } |