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/boot.S | 5 ----- sys/arch/amd64/cpu/boot.S | 5 +++++ 2 files changed, 5 insertions(+), 5 deletions(-) delete mode 100644 sys/arch/amd64/boot.S create mode 100644 sys/arch/amd64/cpu/boot.S diff --git a/sys/arch/amd64/boot.S b/sys/arch/amd64/boot.S deleted file mode 100644 index 0d2e0d2..0000000 --- a/sys/arch/amd64/boot.S +++ /dev/null @@ -1,5 +0,0 @@ - .globl _start -_start: -1: cli - hlt - jmp 1b 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