summaryrefslogtreecommitdiff
path: root/sys/arch/amd64/cpu/boot.S
diff options
context:
space:
mode:
authorIan Moffett <ian@osmora.org>2025-11-15 13:35:30 -0500
committerIan Moffett <ian@osmora.org>2025-11-15 13:35:58 -0500
commitcfd1db14227ce36bfbdf8733cc837c1b07e310ea (patch)
tree50205313f239a80b8b3222c8099db10132e2b550 /sys/arch/amd64/cpu/boot.S
parentfa3c60da8207b724d292b7a44633872c6bfec4c8 (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.S5
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