make keyboard actually type things

This commit is contained in:
2025-03-21 23:10:03 +03:00
parent a8ff36be52
commit bb87905970
4 changed files with 135 additions and 7 deletions
+4 -1
View File
@@ -1,5 +1,5 @@
# Define the object files
OBJS = bin/boot.o bin/kernel.o bin/idt.o bin/isr.o bin/screen.o bin/utils.o bin/string.o bin/stdio.o bin/disk.o bin/pic.o bin/pit.o
OBJS = bin/boot.o bin/kernel.o bin/idt.o bin/isr.o bin/screen.o bin/utils.o bin/string.o bin/stdio.o bin/disk.o bin/pic.o bin/pit.o bin/keyboard.o
# Define the compiler and assembler
CC = gcc -D__is_katauos
@@ -64,6 +64,9 @@ bin/pic.o: src/pic.c
bin/pit.o: src/pit.c
$(CC) $(CFLAGS) -c $< -o $@
bin/keyboard.o: src/keyboard.c
$(CC) $(CFLAGS) -c $< -o $@
clean:
rm -rf bin/
rm -f $(OUTPUT)