runtty            624 src/dps8/dps8_console.c     struct termios runtty;
runtty            625 src/dps8/dps8_console.c     runtty = ttyTermios;
runtty            626 src/dps8/dps8_console.c     runtty.c_oflag &= (unsigned int) ~OPOST; /* no output edit */
runtty            627 src/dps8/dps8_console.c     tcsetattr (0, TCSAFLUSH, & runtty);
runtty           2089 src/simh/sim_console.c struct sgttyb  cmdtty,     runtty;                       /* V6/V7 stty data */
runtty           2104 src/simh/sim_console.c runtty              = cmdtty;                            /* initial run state */
runtty           2105 src/simh/sim_console.c runtty.sg_flags     = cmdtty.sg_flags & ~(ECHO|CRMOD) | CBREAK;
runtty           2125 src/simh/sim_console.c if (ioctl (0, TIOCSETP, &runtty) < 0)
runtty           2191 src/simh/sim_console.c struct termios cmdtty, runtty;
runtty           2199 src/simh/sim_console.c runtty                = cmdtty;
runtty           2200 src/simh/sim_console.c runtty.c_lflag        = runtty.c_lflag & ~(ECHO | ICANON);     /* no echo or edit */
runtty           2201 src/simh/sim_console.c runtty.c_oflag        = runtty.c_oflag & ~OPOST;               /* no output edit */
runtty           2202 src/simh/sim_console.c runtty.c_iflag        = runtty.c_iflag & ~ICRNL;               /* no cr conversion */
runtty           2203 src/simh/sim_console.c runtty.c_cc[VINTR]    = sim_int_char;                          /* interrupt */
runtty           2204 src/simh/sim_console.c runtty.c_cc[VQUIT]    = 0;                                     /* no quit */
runtty           2205 src/simh/sim_console.c runtty.c_cc[VERASE]   = 0;
runtty           2206 src/simh/sim_console.c runtty.c_cc[VKILL]    = 0;
runtty           2207 src/simh/sim_console.c runtty.c_cc[VEOF]     = 0;
runtty           2208 src/simh/sim_console.c runtty.c_cc[VEOL]     = 0;
runtty           2209 src/simh/sim_console.c runtty.c_cc[VSTART]   = 0;                                     /* no host sync */
runtty           2210 src/simh/sim_console.c runtty.c_cc[VSUSP]    = 0;
runtty           2211 src/simh/sim_console.c runtty.c_cc[VSTOP]    = 0;
runtty           2213 src/simh/sim_console.c runtty.c_cc[VREPRINT] = 0;                                     /* no specials */
runtty           2216 src/simh/sim_console.c runtty.c_cc[VDISCARD] = 0;
runtty           2219 src/simh/sim_console.c runtty.c_cc[VWERASE]  = 0;
runtty           2222 src/simh/sim_console.c runtty.c_cc[VLNEXT]   = 0;
runtty           2224 src/simh/sim_console.c runtty.c_cc[VMIN]     = 0;                                     /* no waiting */
runtty           2225 src/simh/sim_console.c runtty.c_cc[VTIME]    = 0;
runtty           2227 src/simh/sim_console.c runtty.c_cc[VDSUSP]   = 0;
runtty           2230 src/simh/sim_console.c runtty.c_cc[VSTATUS]  = 0;
runtty           2239 src/simh/sim_console.c runtty.c_cc[VINTR] = sim_int_char;                      /* in case changed */
runtty           2240 src/simh/sim_console.c if (tcsetattr (0, TCSAFLUSH, &runtty) < 0)