Files
Pegasys-RomWBW/Tools/simh/Sim.cmd
Wayne Warthen f640630a06 CPU Speed Calc Tweek
- Exit CPU speed detection routine earlier if the clock is not ticking.
- Fix minor regression in the SBC_simh.asm config file.
2023-04-10 16:20:12 -07:00

13 lines
326 B
Batchfile

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