1
0
mirror of https://github.com/simh/simh.git synced 2026-04-14 07:50:15 +00:00

All VAXen: Do a powerup reset when changing CPU model

Any change that enables or disables devices should perform a powerup
reset to properly configure bus address/vector activity.
This commit is contained in:
Mark Pizzolato
2022-07-15 09:08:42 -10:00
parent 5a07375342
commit 4bf39c63ea
7 changed files with 21 additions and 21 deletions

View File

@@ -1051,7 +1051,7 @@ if (MATCH_CMD(gbuf, "MICROVAX") == 0) {
vs_dev.flags = vs_dev.flags | DEV_DIS; /* disable mouse */
#endif
strcpy (sim_name, "MicroVAX 3100-80 (KA47)");
reset_all (0); /* reset everything */
reset_all_p (0); /* powerup reset everything */
}
#if defined (VAX_46) || defined (VAX_48)
else if (MATCH_CMD(gbuf, "VAXSTATION") == 0) {
@@ -1064,7 +1064,7 @@ else if (MATCH_CMD(gbuf, "VAXSTATION") == 0) {
#else /* VAX_48 */
strcpy (sim_name, "VAXstation 4000-VLC (KA48)");
#endif
reset_all (0); /* reset everything */
reset_all_p (0); /* powerup reset everything */
#else
return sim_messagef (SCPE_ARG, "Simulator built without Graphic Device Support\n");
#endif