aboutsummaryrefslogtreecommitdiff
path: root/src/makefile
diff options
context:
space:
mode:
authorAqua-sama <aqua@iserlohn-fortress.net>2021-02-28 22:39:25 +0200
committerAqua-sama <aqua@iserlohn-fortress.net>2021-02-28 22:39:25 +0200
commitae4265ea5d77b68757af39d73fe47df1a3563b42 (patch)
tree7282e3d43c471b195bb5a4742ed911c7b7626dcb /src/makefile
parentFix interrupts causing exception 0xd (diff)
downloadkernel.cpp-ae4265ea5d77b68757af39d73fe47df1a3563b42.tar.xz
Add keyboard driver
Diffstat (limited to 'src/makefile')
-rw-r--r--src/makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/makefile b/src/makefile
index 8b21640..dda24af 100644
--- a/src/makefile
+++ b/src/makefile
@@ -7,7 +7,8 @@ CXX_OBJ += src/kernel.o \
src/memory.o \
src/gdt.o \
src/gdt/segmentdescriptor.o \
- src/idt.o
+ src/idt.o \
+ src/idt/interruptgate.o src/idt/interrupthandler.o
src/cpu/irq.h: $(OBJ_DIR)/src/cpu/exceptions.o $(OBJ_DIR)/src/cpu/interrupts.o
@echo " GEN $@"