From a33d9510bd36a9fdb98f291250a025cd4bec8bc1 Mon Sep 17 00:00:00 2001 From: Amlal El Mahrouss Date: Tue, 27 Feb 2024 11:58:54 +0100 Subject: Kernel: working on interrupts, almost fix them. Signed-off-by: Amlal El Mahrouss --- Private/makefile | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'Private/makefile') diff --git a/Private/makefile b/Private/makefile index b49663fc..34f3c16d 100644 --- a/Private/makefile +++ b/Private/makefile @@ -36,11 +36,14 @@ h-core-amd64: $(ASM) $(ASMFLAGS) HALKit/AMD64/HalInstallTIB.asm $(MOVEALL) -OBJCOPY = x86_64-elf-objcopy +OBJCOPY=x86_64-w64-mingw32-objcopy +FONTFLAGS=-b binary +KERNELFONT=./SSFN/amiga.sfn .PHONY: link-amd64 link-amd64: - $(LD) $(LDFLAGS) $(LDOBJ) -o $(KERNEL) + $(LD) $(FONTFLAGS) $(KERNELFONT) -o console_sfn.exe + $(LD) $(LDFLAGS) $(LDOBJ) console_sfn.exe -o $(KERNEL) cp $(KERNEL) Root/System .PHONY: all -- cgit v1.2.3