mirror of https://github.com/wwarthen/RomWBW.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
833 B
33 lines
833 B
OBJECTS = ZETA2_std.rom N8_std.rom SBC_std.rom
|
|
MOREDIFF = camel80.bin game.bin hbios_rom.bin nascom.bin prefix.bin usrrom.bin \
|
|
dbgmon.bin hbios_app.bin imgpad0.bin osimg1.bin romldr.bin \
|
|
eastaegg.bin hbios_img.bin imgpad.bin osimg.bin tastybasic.bin \
|
|
game.bin usrrom.bin
|
|
|
|
SUBDIRS =
|
|
DEST = ../../Binary
|
|
TOOLS =../../Tools
|
|
OTHERS = *.bin *.z80 cpm.sys zsys.sys Build.inc
|
|
include $(TOOLS)/Makefile.inc
|
|
DIFFPATH = $(DIFFTO)/Binary
|
|
|
|
|
|
ROMSIZE=512
|
|
|
|
N8_std.rom: ROMSIZE=1024
|
|
|
|
%.rom:
|
|
bash Build.sh $(shell echo $* | tr '_' ' ') $(ROMSIZE)
|
|
|
|
#ZETA2_std.rom:
|
|
# bash Build.sh ZETA2 std 512
|
|
|
|
hbios_rom.bin: hbios.asm build.inc
|
|
$(TASM) -dROMBOOT hbios.asm hbios_rom.bin
|
|
|
|
hbios_app.bin: hbios.asm build.inc
|
|
$(TASM) -dAPPBOOT hbios.asm hbios_app.bin
|
|
|
|
hbios_img.bin: hbios.asm build.inc
|
|
$(TASM) -dIMGBOOT hbios.asm hbios_img.bin
|
|
|
|
|