This commit is contained in:
nub31
2025-08-31 21:27:08 +02:00
parent 68f00d12fe
commit 365ad14122
14 changed files with 232 additions and 110 deletions

View File

@@ -6,8 +6,8 @@ CFLAGS = -m64 -ffreestanding -fno-builtin -Wall -Wextra -Wshadow -std=c23 -g
LDFLAGS = -g
ASFLAGS = -f elf64 -g -F dwarf
SRC_C := src/kernel.c src/string.c src/vga.c
SRC_ASM := src/boot.asm
SRC_C := src/kernel.c src/string.c src/vga.c src/idt.c src/keyboard.c
SRC_ASM := src/boot.asm src/idt_stub.asm
OBJ_C := $(SRC_C:src/%.c=.build/%.o)
OBJ_ASM := $(SRC_ASM:src/%.asm=.build/%.o)