From 6d263c7d4e0f4b1d34694b5d3d159ccb20b3db02 Mon Sep 17 00:00:00 2001 From: Lizzy Fleckenstein Date: Tue, 19 Dec 2023 01:54:39 +0100 Subject: keyboard driver and threads * PS/2 keyboard driver * interactive shell * move away from \0 terminated strings to sized slices * coroutine threads and IRQ queues --- Makefile | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index e02f94c..cf4bd3d 100644 --- a/Makefile +++ b/Makefile @@ -28,7 +28,11 @@ STAGE3 = \ stage3/ata.o \ stage3/string.o \ stage3/pci.o \ - stage3/fs.o + stage3/fs.o \ + stage3/yield.o \ + stage3/ps2.o \ + stage3/thread.o \ + stage3/shell.o PAD_BOUNDARY = pad() { truncate -s $$(echo "($$(du -b $$1 | cut -f1)+$$2-1)/$$2*$$2" | bc) $$1; }; pad @@ -52,7 +56,7 @@ stage3/%.o: stage3/%.asm nasm -f elf64 $< -o $@ stage3/%.o: stage3/%.c - cc $(CFLAGS) -c $< -o $@ + gcc $(CFLAGS) -c $< -o $@ stage3/isr.asm: stage3/isr.lua lua stage3/isr.lua > stage3/isr.asm -- cgit v1.2.3