start implementing APIC utils

This commit is contained in:
2025-08-29 18:35:22 +03:00
parent 9e21167bd3
commit fb8dd43dd3
9 changed files with 176 additions and 15 deletions
+4 -1
View File
@@ -4,7 +4,7 @@ OBJS = bin/boot.o bin/kernel.o bin/idt.o bin/isr.o bin/screen.o \
bin/keyboard.o bin/paging.o bin/page_alloc.o bin/page_tables.o \
bin/fat.o bin/task.o bin/switch.o bin/sys_exit.o bin/gdt.o bin/isr-asm.o \
bin/kheap.o bin/liballoc.o bin/exec_from_file.o bin/syscalls.o bin/atapi.o \
bin/lib9660.o bin/vfs.o
bin/lib9660.o bin/vfs.o bin/apic.o
# Define the compiler and assembler
#CC = i686-elf-gcc -D__is_katauos
@@ -163,6 +163,9 @@ bin/lib9660.o: src/fs/lib9660.c
bin/vfs.o: src/fs/vfs.c
$(CC) $(CFLAGS) -c $< -o $@
bin/apic.o: src/kernel/apic.c
$(CC) $(CFLAGS) -c $< -o $@
clean:
rm -rf bin/
rm -f $(OUTPUT)