Browse Source

added N8 capability

patch
curt mayer 6 years ago
parent
commit
6ec8ca174f
  1. 1
      Source/HBIOS/Build.sh
  2. 6
      Source/HBIOS/Makefile

1
Source/HBIOS/Build.sh

@ -81,6 +81,7 @@ cp ../Forth/camel80.bin .
make dbgmon.bin prefix.bin romldr.bin eastaegg.bin nascom.bin \
tastybasic.bin game.bin usrrom.bin imgpad.bin imgpad0.bin
if [ $platform != UNA ] ; then
make hbios_rom.bin hbios_app.bin hbios_img.bin
fi

6
Source/HBIOS/Makefile

@ -22,12 +22,12 @@ N8_std.rom: ROMSIZE=1024
#ZETA2_std.rom:
# bash Build.sh ZETA2 std 512
hbios_rom.bin: hbios.asm
hbios_rom.bin: hbios.asm build.inc
$(TASM) -dROMBOOT hbios.asm hbios_rom.bin
hbios_app.bin: hbios.asm
hbios_app.bin: hbios.asm build.inc
$(TASM) -dAPPBOOT hbios.asm hbios_app.bin
hbios_img.bin: hbios.asm
hbios_img.bin: hbios.asm build.inc
$(TASM) -dIMGBOOT hbios.asm hbios_img.bin

Loading…
Cancel
Save