diff options
author | dzwdz | 2021-07-10 17:41:32 +0200 |
---|---|---|
committer | dzwdz | 2021-07-10 17:41:32 +0200 |
commit | 1bf5e324005ce7122a195af106cec656960648dc (patch) | |
tree | 7a8394a5243ad50d1e8d5574d94908461fe96cc6 /src/arch/i386/boot.s | |
parent | 6cbdc62b5cbe34d7355047722d6d483a4d25c7f3 (diff) |
a sensible source structure
The idea is that src/kernel/ is only allowed to interface with the
hardware using whatever's defined in src/arch/generic.h. I'll probably
write a small script for checking this later on.
This is a giant commit so I've probably fucked something up. It boots
fine on Bochs and QEMU, so at least there's that.
Diffstat (limited to 'src/arch/i386/boot.s')
-rw-r--r-- | src/arch/i386/boot.s | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/src/arch/i386/boot.s b/src/arch/i386/boot.s new file mode 100644 index 0000000..74ec312 --- /dev/null +++ b/src/arch/i386/boot.s @@ -0,0 +1,25 @@ +/* a lil stack TODO move to linker.ld */ +.section .bss +.global stack_top +.type stack_top, @object +.align 16 +stack_bottom: +.skip 16384 +stack_top: + + +.section .text +.global _start +.type _start, @function +_start: + mov $stack_top, %esp + call kmain_early + +.global halt_cpu +.type halt_cpu, @function +halt_cpu: + cli +1: hlt + jmp 1b + +.size _start, . - _start |