forked from MirrorRepos/RomWBW
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
291 B
12 lines
291 B
@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
|
|
|