diff options
Diffstat (limited to 'include/01.pocetak/boot03.s')
| -rw-r--r-- | include/01.pocetak/boot03.s | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/include/01.pocetak/boot03.s b/include/01.pocetak/boot03.s new file mode 100644 index 0000000..46a4e7f --- /dev/null +++ b/include/01.pocetak/boot03.s @@ -0,0 +1,11 @@ +.section .text +.global _start +.type _start, @function +_start: + mov $stack_top, %esp + call kernel_main + cli +1: hlt + jmp 1b + +.size _start, . - _start |
