diff options
author | Danny Holman <dholman@gymli.org> | 2024-02-16 13:29:51 -0600 |
---|---|---|
committer | Danny Holman <dholman@gymli.org> | 2024-02-16 13:29:51 -0600 |
commit | a19ae009f9f571d25a90aca5cc5e05d3c76e1aed (patch) | |
tree | 0cf34074f95a119917bd53b3da0350af7cd55477 /arch/i386/make.config | |
parent | 5ee3595bf405c2c39fc36e15b8c2a3a8d131cf9c (diff) |
arch: i386: add basic keyboard driver
Add a basic driver for the PS/2 keyboard. This driver just prints
whatever it receives back out to the framebuffer.
Signed-off-by: Danny Holman <dholman@gymli.org>
Diffstat (limited to 'arch/i386/make.config')
-rw-r--r-- | arch/i386/make.config | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/i386/make.config b/arch/i386/make.config index 2c87912..9d74c33 100644 --- a/arch/i386/make.config +++ b/arch/i386/make.config @@ -9,6 +9,7 @@ KERNEL_ARCH_OBJS=$(ARCHDIR)/boot/boot.o \ $(ARCHDIR)/boot/gdt.o \ $(ARCHDIR)/kernel/framebuffer.o \ $(ARCHDIR)/kernel/multiboot.o \ + $(ARCHDIR)/kernel/keyboard.o \ $(ARCHDIR)/kernel/serial.o \ $(ARCHDIR)/kernel/pic.o \ $(ARCHDIR)/kernel/timer.o \ |