1
0
mirror of https://github.com/open-simh/simh.git synced 2026-05-04 15:16:06 +00:00

Initial Merge of Dave Bryan's localfixes to run the HP diagnostics

This commit is contained in:
Mark Pizzolato
2012-03-26 17:17:44 -07:00
parent 7e68046c59
commit 693b75c00e
5 changed files with 476 additions and 8 deletions

View File

@@ -37,6 +37,7 @@
Added REG_FIT flag
16-Aug-05 RMS Fixed C++ declaration and cast problems
11-Mar-05 RMS Moved 64b data type definitions outside USE_INT64
25-Feb-05 JDB [local fix 3] Added SCPE_CHALT error value
07-Feb-05 RMS Added assertion fail stop
05-Nov-04 RMS Added support for SHOW opt=val
20-Oct-04 RMS Converted all base types to typedefs
@@ -248,8 +249,11 @@ typedef uint32 t_addr;
#define SCPE_TTMO (SCPE_BASE + 40) /* Telnet conn timeout */
#define SCPE_STALL (SCPE_BASE + 41) /* Telnet conn stall */
#define SCPE_AFAIL (SCPE_BASE + 42) /* assert failed */
/* [JDB local fix 3] begin */
#define SCPE_CHALT (SCPE_BASE + 43) /* Console halt */
/* [JDB local fix 3] end */
#define SCPE_MAX_ERR (SCPE_BASE + 43) /* Maximum SCPE Error Value */
#define SCPE_MAX_ERR (SCPE_BASE + 44) /* Maximum SCPE Error Value */
#define SCPE_KFLAG 0010000 /* tti data flag */
#define SCPE_BREAK 0020000 /* tti break flag */