diff options
Diffstat (limited to 'src/init/main.c')
-rw-r--r-- | src/init/main.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/init/main.c b/src/init/main.c index ce1600c..cb3fa1d 100644 --- a/src/init/main.c +++ b/src/init/main.c @@ -1,6 +1,10 @@ #include <stdint.h> +void _syscall(); + int main() { + _syscall(); + // change the colors of VGA text // doesn't require a lot of code, but still shows that it's working uint8_t *vga = (void*) 0xB8000; |