1
0
mirror of https://github.com/simh/simh.git synced 2026-05-03 06:28:41 +00:00

ALL VAX: Fix vax_cpu to be model invariant and implement platform specific machine behavior in model specific machine_check routine. As per Bob Supnik. Fix #198

This commit is contained in:
Mark Pizzolato
2015-03-30 10:27:02 -07:00
parent 66dba79418
commit 5e556cc70a
7 changed files with 13 additions and 5 deletions

View File

@@ -640,11 +640,6 @@ else if (abortval < 0) { /* mm or rsrv or int */
break;
case SCB_MCHK: /* machine check */
/* The ka630 and ka620 CPU ROMs use double machine checks to size memory */
#if !defined(VAX_620) && !defined(VAX_630)
if (in_ie) /* in exc? panic */
ABORT (STOP_INIE);
#endif
cc = machine_check (p1, opc, cc, delta); /* system specific */
in_ie = 0;
GET_CUR; /* PSL<cur> changed */