diff options
author | Aqua-sama <aqua@iserlohn-fortress.net> | 2021-02-28 22:39:25 +0200 |
---|---|---|
committer | Aqua-sama <aqua@iserlohn-fortress.net> | 2021-02-28 22:39:25 +0200 |
commit | ae4265ea5d77b68757af39d73fe47df1a3563b42 (patch) | |
tree | 7282e3d43c471b195bb5a4742ed911c7b7626dcb /src/makefile | |
parent | Fix interrupts causing exception 0xd (diff) | |
download | kernel.cpp-ae4265ea5d77b68757af39d73fe47df1a3563b42.tar.xz |
Add keyboard driver
Diffstat (limited to 'src/makefile')
-rw-r--r-- | src/makefile | 3 |
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 $@" |