mirror of
https://github.com/simh/simh.git
synced 2026-01-11 23:52:58 +00:00
- removed cycle counting in CPU, the sim_interval issue - fixed the Console multiplexer logic; it now works with SET REMOTE TELNET= and SET CONSOLE TELNET= - commented testhdt.sim - changed run.cmd to try to execute either VStudio or mingw executable, in this order. - changed printf messages to use sim_printf Possible issues remaining: - timer device polling, not yet debugged, the rate of 1.25MHz is likely still incorrect, so UCSD wall clock is surely wrong - few instructions still to be trapped by opcode.debug - I haven't seen them in life code yet - HD device still not yet finished; I'll pick this up again soon
12 lines
188 B
Batchfile
12 lines
188 B
Batchfile
@echo off
|
|
if not exist "..\BIN\NT\Win32-Debug\pdq3.exe" goto try_mingw
|
|
..\BIN\NT\Win32-Debug\pdq3.exe testhdt.sim
|
|
goto done
|
|
|
|
:try_mingw
|
|
.\PDQ3.exe testhdt.sim
|
|
goto done
|
|
|
|
|
|
:done
|