1
0
mirror of https://github.com/rcornwell/sims.git synced 2026-04-06 05:32:27 +00:00

SCP: Update SCP to current.

This commit is contained in:
Richard Cornwell
2021-03-16 22:58:35 -04:00
parent db0d1b7036
commit 9c7b5fed0e

3
scp.c
View File

@@ -8642,6 +8642,7 @@ if ((flag == RU_RUN) || (flag == RU_GO)) { /* run or go */
new_pc = TRUE;
}
}
put_rval_pcchk (sim_PC, 0, new_pcv, new_pc); /* Save in PC in case reset references PC */
if ((flag == RU_RUN) && /* run? */
((r = sim_run_boot_prep (flag)) != SCPE_OK)) { /* reset sim */
put_rval_pcchk (sim_PC, 0, orig_pcv, FALSE); /* restore original PC */
@@ -8674,7 +8675,7 @@ if ((flag == RU_RUN) || (flag == RU_GO)) { /* run or go */
}
sim_switches = saved_switches;
}
put_rval_pcchk (sim_PC, 0, new_pcv, new_pc); /* Save in PC */
put_rval_pcchk (sim_PC, 0, new_pcv, new_pc); /* Save in PC again in case reset changed it */
}
else if ((flag == RU_STEP) ||