diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2024-09-28 10:26:46 -0400 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2024-09-28 10:26:46 -0400 |
commit | ba5683581d00d9f02d470f4cde881293cc838a91 (patch) | |
tree | 772863e39677ae02b84a06f233d0a713d44d2f22 /Makefile | |
parent | 376d7ec265085ae3a77664356a2ad35921cfccaf (diff) |
basic keyboard support
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -2,9 +2,10 @@ CXXFLAGS := -m32 -ggdb -g3 -O0 -fno-pic -ffreestanding -fno-rtti -fno-exceptions LDFLAGS := -m32 -static -T link.ld -ffreestanding -nostdlib CXXFILES := acpi.cpp \ - boot.cpp \ + boot.cpp \ gdt.cpp \ idt.cpp \ + keyboard.cpp \ memory.cpp \ multiboot.cpp \ pic.cpp \ |