Move GDT init into amd64/gdt.c
All checks were successful
Build documentation / build-and-deploy (push) Successful in 2m34s

This commit is contained in:
2026-02-20 15:38:23 +01:00
parent c68b00f2ea
commit 23d6d443df
6 changed files with 15 additions and 33 deletions

View File

@@ -1,5 +1,4 @@
c += amd64/bootmain.c \
amd64/init.c \
amd64/io.c \
amd64/debug.c \
amd64/spin_lock.c \
@@ -12,7 +11,8 @@ c += amd64/bootmain.c \
amd64/smp.c \
amd64/sched1.c \
amd64/proc.c \
amd64/syscall.c
amd64/syscall.c \
amd64/gdt.c
S += amd64/intr_stub.S \
amd64/spin.S \
@@ -20,7 +20,6 @@ S += amd64/intr_stub.S \
amd64/syscallentry.S
o += amd64/bootmain.o \
amd64/init.o \
amd64/io.o \
amd64/debug.o \
amd64/spin_lock.o \
@@ -37,4 +36,5 @@ o += amd64/bootmain.o \
amd64/sched1.o \
amd64/proc.o \
amd64/syscall.o \
amd64/syscallentry.o
amd64/syscallentry.o \
amd64/gdt.o