1
0
mirror of https://github.com/simh/simh.git synced 2026-01-25 19:56:25 +00:00

GRI, PDP11, PDP8, VAX: Misc formatting and typo cleanups

This commit is contained in:
Bob Supnik
2018-03-09 14:03:13 -08:00
committed by Mark Pizzolato
parent 0df520de7f
commit bf82092493
5 changed files with 7 additions and 6 deletions

View File

@@ -813,7 +813,7 @@ switch (fnc) { /* at speed, check fnc *
if (MEM_ADDR_OK (ma)) /* mem addr legal? */
M[ma] = dat;
if (M[DT_WC] == 0) /* wc ovf? */
dt_substate = DTO_WCO;
dt_substate = DTO_WCO; /* fall through */
case DTO_WCO: /* wc ovf, not sob */
if (wrd != (dir? 0: DTU_BSIZE (uptr) - 1)) /* not last? */
sim_activate (uptr, DT_WSIZE * dt_ltime);
@@ -863,7 +863,7 @@ switch (fnc) { /* at speed, check fnc *
dt_substate = 0; /* fall through */
case 0: /* normal write */
M[DT_WC] = (M[DT_WC] + 1) & 07777; /* incr WC, CA */
M[DT_CA] = (M[DT_CA] + 1) & 07777;
M[DT_CA] = (M[DT_CA] + 1) & 07777; /* fall through */
case DTO_WCO: /* wc ovflo */
ma = DTB_GETMEX (dtsb) | M[DT_CA]; /* get mem addr */
ba = (blk * DTU_BSIZE (uptr)) + wrd; /* buffer ptr */

View File

@@ -49,7 +49,7 @@
This module implements 1-16 individual serial interfaces similar in function
to the console. These interfaces are mapped to Telnet based connections as
though they were the four lines of a terminal multiplexor. The connection
though they were the 16 lines of a terminal multiplexor. The connection
polling mechanism is superimposed onto the keyboard of the first interface.
The done and enable flags are maintained locally, and only a master interrupt