Skip to content

Commit

Permalink
PDP11: RF11: Undo log changes
Browse files Browse the repository at this point in the history
  • Loading branch information
al20878 committed Sep 22, 2023
1 parent 5e550cf commit ea048f4
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions PDP11/pdp11_rf.c
Original file line number Diff line number Diff line change
Expand Up @@ -270,8 +270,8 @@ switch ((PA >> 1) & 07) { /* decode PA<3:1> */
rf_cs &= ~(RFCS_WCHK|RFCS_DPAR|RFCS_NED|RFCS_WLK|RFCS_MXFR|RFCS_DONE);
CLR_INT (RF);
if (DEBUG_PRS (rf_dev))
fprintf (sim_deb, ">>RF start: cs = %o, da = %o, ma = %o, wc = %o\n",
update_rfcs (0, 0), GET_DEX (rf_dae) | rf_da, GET_MEX (rf_cs) | rf_cma, -((int16) rf_wc));
fprintf (sim_deb, ">>RF start: cs = %o, da = %o, ma = %o\n",
update_rfcs (0, 0), GET_DEX (rf_dae) | rf_da, GET_MEX (rf_cs) | rf_cma);
}
break;

Expand Down Expand Up @@ -390,8 +390,8 @@ if ((rf_wc != 0) && ((rf_cs & RFCS_ERR) == 0)) /* more to do? */
else {
update_rfcs (RFCS_DONE, 0);
if (DEBUG_PRS (rf_dev))
fprintf (sim_deb, ">>RF done: cs = %o, da = %o, ma = %o, wc = %o\n",
rf_cs, GET_DEX (rf_dae) | rf_da, GET_MEX (rf_cs) | rf_cma, -((int16) rf_wc));
fprintf (sim_deb, ">>RF done: cs = %o, dae = %o, da = %o, ma = %o, wc = %o\n",
rf_cs, rf_dae, rf_da, rf_cma, rf_wc);
}
return SCPE_OK;
}
Expand Down

0 comments on commit ea048f4

Please sign in to comment.