From cfd1db14227ce36bfbdf8733cc837c1b07e310ea Mon Sep 17 00:00:00 2001 From: Ian Moffett Date: Sat, 15 Nov 2025 13:35:30 -0500 Subject: kern/amd64: Move boot.S to amd64/cpu/ Signed-off-by: Ian Moffett --- sys/arch/amd64/cpu/boot.S | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 sys/arch/amd64/cpu/boot.S (limited to 'sys/arch/amd64/cpu/boot.S') 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 -- cgit v1.2.3