diff options
author | Danny Holman <dholman@gymli.xyz> | 2021-08-30 08:26:05 -0500 |
---|---|---|
committer | Danny Holman <dholman@gymli.xyz> | 2021-08-30 08:26:05 -0500 |
commit | 7bf2c634fdb55d67affe74a2ed0a157610308942 (patch) | |
tree | c8a0d7bbc1b03669e10a8b18d6b453708e099378 /arch/i386/make.config | |
parent | 8cd620d25f31c4e0a87d6099accd9915e93a5815 (diff) |
i386: create idt.c and isr.s
Create files that add IDT support for i386.
Signed-off-by: Danny Holman <dholman@gymli.xyz>
Diffstat (limited to 'arch/i386/make.config')
-rw-r--r-- | arch/i386/make.config | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/i386/make.config b/arch/i386/make.config index 6582794..c807884 100644 --- a/arch/i386/make.config +++ b/arch/i386/make.config @@ -4,6 +4,8 @@ KERNEL_ARCH_LDFLAGS= KERNEL_ARCH_LIBS= KERNEL_ARCH_OBJS=$(ARCHDIR)/boot/boot.o \ + $(ARCHDIR)/boot/isr.o \ $(ARCHDIR)/boot/tty.o \ $(ARCHDIR)/boot/gdt.o \ + $(ARCHDIR)/boot/idt.o \ $(ARCHDIR)/kernel/serial.o \ |