Browse Source

Some minor formatting changes for Heathkit related HBIOS code. Add a script to build a CF image with MSX ROMs which includes CPM22,ZSDOS and CPM3

pull/409/head
Les Bird 1 year ago
parent
commit
6394605a20
  1. 4
      Source/HBIOS/hbios.asm
  2. 10
      Source/Images/BuildMSX.cmd

4
Source/HBIOS/hbios.asm

@ -7957,14 +7957,14 @@ SIZ_PKD .EQU $ - ORG_PKD
#ENDIF
#ENDIF
;
#IF (H8PENABLE)
#IF (H8PENABLE)
ORG_H8P .EQU $
#INCLUDE "h8p.asm"
SIZ_H8P .EQU $ - ORG_H8P
MEMECHO "H8P occupies "
MEMECHO SIZ_H8P
MEMECHO " bytes.\n"
#ENDIF
#ENDIF
;
#IF (PLATFORM == PLT_NABU)
ORG_NABU .EQU $

10
Source/Images/BuildMSX.cmd

@ -0,0 +1,10 @@
@echo off
setlocal
echo.
echo Building MSX Hard Disk Combo Image (1024 directory entry format)...
echo.
copy hd1k_prefix.dat ..\..\Binary\ || exit /b
copy /b hd1k_prefix.dat + ..\..\Binary\hd1k_cpm22.img + ..\..\Binary\hd1k_zsdos.img + ..\..\Binary\hd1k_cpm3.img + ..\..\Binary\hd1k_msxroms1.img + ..\..\Binary\hd1k_msxroms2.img ..\..\Binary\hd1k_msxcombo.img || exit /b
Loading…
Cancel
Save