Bootloader loading kernel, not yet jumping to it

This commit is contained in:
Justin C. Miller
2018-03-18 16:41:11 -07:00
parent 0e3fa1c3cf
commit 72e143b93c
13 changed files with 117 additions and 103 deletions

4
src/modules/main/main.c Normal file
View File

@@ -0,0 +1,4 @@
__attribute__((used))
int kernel_main() {
return 42;
}