summaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authordzwdz2024-07-25 20:15:40 +0200
committerdzwdz2024-07-25 20:15:40 +0200
commit24934406d5d39e013e22a9e6f4138c4169460d71 (patch)
tree358f6c1dc386c50b85900a557321a256048737cd /configure
parenta6fabfb78e70b8096a8bf336aa64a3358a2f5eca (diff)
kernel: set up the GDT in assembly
This is just for simplicity's sake. I think I could even omit the `movw $TSS, (GdtTss + 2)` and have the linker fill that out as a relocation, but that would probably be more complex overall.
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure b/configure
index a00deff..3b62367 100755
--- a/configure
+++ b/configure
@@ -174,4 +174,4 @@ cc("libk/%.s", "$(CFLAGS_KERNEL)", "out/sysrootk/usr/include/")
cc("libk/%.S", "$(CFLAGS_KERNEL)", "out/sysrootk/usr/include/")
cc("kernel/arch/amd64/32/%.c", "$(CFLAGS_KERNEL) -fno-pic -m32", "out/sysrootk/usr/include/")
-cc("kernel/arch/amd64/32/%.s", "$(CFLAGS_KERNEL) -fno-pic -m32", "out/sysrootk/usr/include/")
+cc("kernel/arch/amd64/32/%.S", "$(CFLAGS_KERNEL) -fno-pic -m32", "out/sysrootk/usr/include/")