Added a file selection screen (that does nothing), Moved tests to their own file, Fixed a race condition with the keyboard handler

This commit is contained in:
Lucia Ceionia
2023-02-02 21:40:39 -06:00
parent 2114741766
commit 964cbcd68d
9 changed files with 287 additions and 131 deletions

View File

@@ -1,4 +1,4 @@
objects = entry.o kernel.o task.o handler.o interrupt.o v86.o print.o tss.o dosfs/dosfs.o gdt.o usermode.o paging.o fault.o
objects = entry.o kernel.o task.o handler.o interrupt.o v86.o print.o tss.o dosfs/dosfs.o gdt.o usermode.o paging.o fault.o tests.o
CFLAGS = -target "i686-elf" -m32 -mgeneral-regs-only -ffreestanding -march=pentium-m -fno-stack-protector -Wno-int-conversion -nostdlib -c
%.o: %.nasm