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. 10
      Source/Images/BuildMSX.cmd

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