I1620: Convert a few stray tab characters to spaces which had crept in over time.

This commit is contained in:
Mark Pizzolato 2015-01-12 11:40:21 -08:00
parent 8f6e849ecf
commit 9ad2f9bb12
2 changed files with 6 additions and 6 deletions

View file

@ -495,7 +495,7 @@ while (reason == 0) { /* loop until halted */
if (sim_brk_summ && sim_brk_test (PC, SWMASK ('E'))) { /* breakpoint? */ if (sim_brk_summ && sim_brk_test (PC, SWMASK ('E'))) { /* breakpoint? */
reason = STOP_IBKPT; /* stop simulation */ reason = STOP_IBKPT; /* stop simulation */
break; break;
} }
sim_interval = sim_interval - 1; sim_interval = sim_interval - 1;
@ -880,7 +880,7 @@ while (reason == 0) { /* loop until halted */
reason = STOP_OVERFL; reason = STOP_OVERFL;
if ((ind[IN_EZ] == 0) && (sta == ADD_NOCRY)) { /* ~z, ~c, ~sign chg? */ if ((ind[IN_EZ] == 0) && (sta == ADD_NOCRY)) { /* ~z, ~c, ~sign chg? */
BRANCH (PAR); /* branch */ BRANCH (PAR); /* branch */
} }
break; break;
case OP_BCXM: case OP_BCXM:
@ -894,7 +894,7 @@ while (reason == 0) { /* loop until halted */
reason = STOP_OVERFL; reason = STOP_OVERFL;
if ((ind[IN_EZ] == 0) && (sta == ADD_NOCRY)) { /* ~z, ~c, ~sign chg? */ if ((ind[IN_EZ] == 0) && (sta == ADD_NOCRY)) { /* ~z, ~c, ~sign chg? */
BRANCH (PAR); /* branch */ BRANCH (PAR); /* branch */
} }
break; break;
/* Branch and select - P is valid */ /* Branch and select - P is valid */
@ -920,7 +920,7 @@ while (reason == 0) { /* loop until halted */
default: default:
reason = STOP_INVSEL; /* undefined */ reason = STOP_INVSEL; /* undefined */
break; break;
} }
BRANCH (PAR); BRANCH (PAR);
break; break;
@ -1395,7 +1395,7 @@ if (comp && !cry && !ind[IN_EZ]) { /* recomp needed? */
if (sto) { /* storing? */ if (sto) { /* storing? */
for (cry = 0, dp = dsv; dp != d; ) { /* rescan */ for (cry = 0, dp = dsv; dp != d; ) { /* rescan */
dst = M[dp] & DIGIT; /* get dst digit */ dst = M[dp] & DIGIT; /* get dst digit */
dst = (dp == dsv)? (10 - dst): (9 - dst); /* 10 or 9s comp */ dst = (dp == dsv)? (10 - dst): (9 - dst); /* 10 or 9s comp */
res = add_one_digit (0, dst, &cry); /* "add" */ res = add_one_digit (0, dst, &cry); /* "add" */
M[dp] = (M[dp] & FLAG) | res; /* store */ M[dp] = (M[dp] & FLAG) | res; /* store */
MM (dp); /* decr dst addr */ MM (dp); /* decr dst addr */

View file

@ -326,7 +326,7 @@ int32 t;
do { do {
t = sim_poll_kbd (); /* get character */ t = sim_poll_kbd (); /* get character */
} while ((t == SCPE_OK) || (t & SCPE_BREAK)); /* ignore break */ } while ((t == SCPE_OK) || (t & SCPE_BREAK)); /* ignore break */
if (t < SCPE_KFLAG) /* error? */ if (t < SCPE_KFLAG) /* error? */
return t; return t;
*c = t & 0177; /* store character */ *c = t & 0177; /* store character */