diff options
| author | Ian Moffett <ian@osmora.org> | 2025-11-15 13:35:30 -0500 |
|---|---|---|
| committer | Ian Moffett <ian@osmora.org> | 2025-11-15 13:35:58 -0500 |
| commit | cfd1db14227ce36bfbdf8733cc837c1b07e310ea (patch) | |
| tree | 50205313f239a80b8b3222c8099db10132e2b550 /sys/arch/amd64/cpu/boot.S | |
| parent | fa3c60da8207b724d292b7a44633872c6bfec4c8 (diff) | |
kern/amd64: Move boot.S to amd64/cpu/
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'sys/arch/amd64/cpu/boot.S')
| -rw-r--r-- | sys/arch/amd64/cpu/boot.S | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/sys/arch/amd64/cpu/boot.S b/sys/arch/amd64/cpu/boot.S new file mode 100644 index 0000000..0d2e0d2 --- /dev/null +++ b/sys/arch/amd64/cpu/boot.S @@ -0,0 +1,5 @@ + .globl _start +_start: +1: cli + hlt + jmp 1b |
