Improve memory position handling
This commit is contained in:
parent
47630b2c03
commit
af61db5e40
3 changed files with 11 additions and 10 deletions
7
Makefile
7
Makefile
|
@ -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
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue