1
0
mirror of https://github.com/simh/simh.git synced 2026-04-27 20:38:04 +00:00

SCP: Add help for NOEXPECT and spelling cleanups

This commit is contained in:
Mark Pizzolato
2016-12-29 13:52:06 -08:00
parent 0275ef05e8
commit e52ac6d57f
5 changed files with 12 additions and 10 deletions

View File

@@ -290,7 +290,7 @@ switch ((PA >> 1) & 03) { /* decode PA<2:1> */
case 01: /* dci buf */
dci_clr_int (ln);
*data = dci_buf[ln];
/* Rechedule the next poll preceisely so that
/* Reschedule the next poll preceisely so that the
the programmed input speed is observed. */
sim_clock_coschedule_abs (&dci_unit, tmxr_poll);
return SCPE_OK;

View File

@@ -273,7 +273,7 @@ switch ((PA >> 1) & 03) { /* decode PA<2:1> */
*data = dli_buf[ln] & DLIBUF_RD;
dli_csr[ln] &= ~CSR_DONE; /* clr rcv done */
dli_clr_int (ln, DLI_RCI); /* clr rcv int req */
/* Rechedule the next poll preceisely so that
/* Reschedule the next poll preceisely so that
the programmed input speed is observed. */
sim_clock_coschedule_abs (&dli_unit, tmxr_poll);
break;

View File

@@ -398,7 +398,7 @@ switch ((PA >> 1) & 03) { /* case on PA<2:1> */
tmxr_poll_rx (&dz_desc); /* poll input */
dz_update_rcvi (); /* update rx intr */
if (dz_rbuf[dz]) {
/* Rechedule the next poll preceisely so that
/* Reschedule the next poll preceisely so that the
the programmed input speed is observed. */
sim_clock_coschedule_abs (dz_unit, tmxr_poll);
}