dead@root

This commit is contained in:
2024-05-21 17:54:19 +03:00
parent 23fe286eec
commit 0e5bd43f55
24 changed files with 1155 additions and 116 deletions

View File

@@ -9,9 +9,9 @@ GRUB_MKRESCUE = grub-mkrescue
KERNEL = myos.bin
ISO = myos.iso
SOURCES_C = kernel.c terminal.c idt.c timer.c io.c vga.c gdt.c
SOURCES_ASM = boot.s idt_load.s gdt_flush.s pit_handler.s
OBJECTS = $(SOURCES_C:.c=.o) $(SOURCES_ASM:.s=.o)
SOURCES_C = kernel.c tty.c idt.c timer.c io.c vga.c gdt.c sys.c irq.c isr.c keyboard.c shell.c string.c
SOURCES_ASM = boot.s idt_load.s gdt_flush.s pit_handler.s irq_e.s isr_e.s
OBJECTS = $(SOURCES_ASM:.s=.o) $(SOURCES_C:.c=.o)
ISO_DIR = isodir
GRUB_DIR = $(ISO_DIR)/boot/grub