From 2218b243897843536c1191f268a91dcb0375d8ac Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Tue, 28 Jul 2020 22:06:43 +0200 Subject: Yay, timer works. This confirms my assumption that the errors are the bootloaders fault by not supporting indirect pointers. --- Makefile | 2 ++ 1 file changed, 2 insertions(+) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 1bb0c5e..314c894 100644 --- a/Makefile +++ b/Makefile @@ -8,6 +8,7 @@ COBJS = src/main.o \ src/drivers/interrupts_asm.o \ src/drivers/keyboard.o \ src/drivers/ide.o \ + src/drivers/timer.o \ src/features/fs.o \ src/features/psf.o \ src/features/gui.o \ @@ -20,6 +21,7 @@ CC = cross/opt/bin/i686-elf-gcc LD = cross/opt/bin/i686-elf-ld AS = nasm +# Flags to make the binary smaller TODO: Remove after indirect pointer support! CSFLAGS = -fno-stack-protector -fomit-frame-pointer -ffunction-sections -fdata-sections -Wl,--gc-sections -mpreferred-stack-boundary=2 -falign-functions=1 -falign-jumps=1 -falign-loops=1 -fno-unwind-tables -fno-asynchronous-unwind-tables -fno-math-errno -fno-unroll-loops -fmerge-all-constants -fno-ident -ffast-math # TODO: Use lib as external library -- cgit v1.2.3