implemented basic keyboard input getting

This commit is contained in:
2025-03-14 18:32:01 +03:00
parent d5b504e815
commit ab775bd958
6 changed files with 72 additions and 15 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
OBJS = bin/boot.o bin/kernel.o bin/idt.o bin/isr.o bin/screen.o bin/utils.o
# Define the compiler and assembler
CC = gcc
@@ -36,6 +36,9 @@ bin/isr.o: src/isr.c
bin/idt.o: src/idt.c
$(CC) $(CFLAGS) -c $< -o $@
bin/utils.o: src/utils.c
$(CC) $(CFLAGS) -c $< -o $@
clean:
rm -rf bin/
rm -f $(OUTPUT)