Improve memory position handling

This commit is contained in:
Nero 2019-10-28 10:49:42 +00:00
parent 47630b2c03
commit af61db5e40
3 changed files with 11 additions and 10 deletions

View file

@ -1,8 +1,9 @@
FLOPPY = 360
RAM = 0x10000
BDOS = 0xF000
BDOSIMG = bdos.bin
BIOS = 0xF800
BIOSIMG = bios8086.bin
PROGRAMS = $(patsubst %.asm,%.com,$(wildcard com/*.asm))
@ -15,7 +16,7 @@ QEMU_ARGS = $(addprefix --option-rom ,$(ROMS))
NASM = nasm
NASM_ARGS = -s -Ilib -Plib/nasmcomp.asm -w-macro-params
NASM_ARGS += -DRAM=$(RAM)
NASM_ARGS += -DBDOS=$(BDOS) -DBIOS=$(BIOS)
EMUL = utils/emul