diff options
author | Marvin Borner | 2021-03-13 00:38:36 +0100 |
---|---|---|
committer | Marvin Borner | 2021-03-13 00:40:23 +0100 |
commit | 606774e6b0e0a2d36139983b85c8675b2228a9ff (patch) | |
tree | 72a8ba13668ac0a91ac3871b08c1882ce43f7580 /libc | |
parent | e8f17844d05fdc0e44d3793dc73996c7c09e44d6 (diff) |
Fixed test suite
Diffstat (limited to 'libc')
-rw-r--r-- | libc/crt/crt0.asm | 2 | ||||
-rw-r--r-- | libc/inc/sys.h | 10 |
2 files changed, 9 insertions, 3 deletions
diff --git a/libc/crt/crt0.asm b/libc/crt/crt0.asm index a0621ff..0f8024d 100644 --- a/libc/crt/crt0.asm +++ b/libc/crt/crt0.asm @@ -10,6 +10,6 @@ _start: call main push eax - push 8 + push 9 call sys1 jmp $ diff --git a/libc/inc/sys.h b/libc/inc/sys.h index c100e6a..3125cb0 100644 --- a/libc/inc/sys.h +++ b/libc/inc/sys.h @@ -9,6 +9,10 @@ #define KEYBOARD_MAGIC 0x555555 #define MOUSE_MAGIC 0xaaaaaa +#define SYS_BOOT_MAGIC 0x18122002 +#define SYS_BOOT_REBOOT 0xeeb007 +#define SYS_BOOT_SHUTDOWN 0xdead + enum sys { SYS_LOOP, // To infinity and beyond (debug)! SYS_ALLOC, // Allocate memory @@ -19,7 +23,8 @@ enum sys { SYS_IOCTL, // Interact with a file/device SYS_POLL, // Wait for multiple files SYS_EXEC, // Execute path - SYS_EXIT, // Exit current process // TODO: Free all memory of process + SYS_EXIT, // Exit current process + SYS_BOOT, // Boot functions (e.g. reboot/shutdown) SYS_YIELD, // Switch to next process SYS_TIME, // Get kernel time SYS_NET_OPEN, // Open network socket @@ -82,7 +87,8 @@ int sysv(enum sys num, ...); yield(); \ } \ } -#define yield(void) (int)sys0(SYS_YIELD) +#define boot(cmd) (s32) sys2(SYS_BOOT, SYS_BOOT_MAGIC, cmd) +#define yield(void) (s32) sys0(SYS_YIELD) #define time(void) (u32) sys0(SYS_TIME) static inline u32 getpid(void) |