From 36089d20ca1f7c57f36c4172759a5084bdf87a3a Mon Sep 17 00:00:00 2001 From: dzwdz Date: Wed, 21 Jul 2021 21:31:52 +0200 Subject: barebones syscall --- src/init/main.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/init/main.c') 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 +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; -- cgit v1.2.3