Files
Pegasys-RomWBW/Sim.cmd
Wayne Warthen 53a74f78d7 HBIOS driver and BPBIOS refinements
- Refined sd, ide, and ppide drivers to improve hardware compatibility
- Improved BPBIOS build process
2016-02-01 14:50:58 -08:00

13 lines
291 B
Batchfile

@echo off
set ROM=Output\SBC_simh.rom
if not "%1"=="" set ROM=Output\%1.rom
if not exist %ROM% goto romerr
rem start C:\Users\WWarthen\Bin\putty.exe -load "SIMH Telnet"
start /w tools\altairz80.exe sim.cfg %ROM%
goto :eof
:romerr
echo ROM Image %ROM% Not Found!
pause
goto :eof