Fix rom builds

This commit is contained in:
Nero 2020-04-04 21:04:36 +00:00
parent 3b438074ef
commit 1c6268798c
1 changed files with 2 additions and 2 deletions

View File

@ -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