From 1c6268798c73aeb69eaeda760b126837a5758704 Mon Sep 17 00:00:00 2001 From: Nero <41307858+nero@users.noreply.github.com> Date: Sat, 4 Apr 2020 21:04:36 +0000 Subject: [PATCH] Fix rom builds --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index eaeb098..2f20979 100644 --- a/Makefile +++ b/Makefile @@ -9,7 +9,7 @@ QEMU = qemu-system-$(QEMU_ARCH) QEMU_ARGS = $(addprefix --option-rom ,$(ROMS)) NASM = nasm -NASM_ARGS = -s -DFLOPPY=$(FLOPPY) +NASM_ARGS = -s -Ilib -DFLOPPY=$(FLOPPY) EMUL = utils/emul @@ -18,7 +18,7 @@ QEMU_ARGS += --enable-kvm endif ifdef DEBUG -ROMS += rom/debug.rom +ROMS += debug.rom NASM_ARGS += -l $(basename $@).lst endif