mirror of
https://github.com/wwarthen/RomWBW.git
synced 2026-02-06 14:11:48 -06:00
12 lines
295 B
Batchfile
12 lines
295 B
Batchfile
@echo off
|
|
set ROM=..\..\Binary\SBC_simh.rom
|
|
if not "%1"=="" set ROM=..\..\Binary\%1.rom
|
|
if not exist %ROM% goto romerr
|
|
rem start C:\Users\WWarthen\Bin\putty.exe -load "SIMH Telnet"
|
|
start /w altairz80.exe sim.cfg %ROM%
|
|
goto :eof
|
|
|
|
:romerr
|
|
echo ROM Image %ROM% Not Found!
|
|
pause
|
|
goto :eof |