runtty            621 src/dps8/dps8_console.c     struct termios runtty;
runtty            622 src/dps8/dps8_console.c     runtty = ttyTermios;
runtty            623 src/dps8/dps8_console.c     runtty.c_oflag &= (unsigned int) ~OPOST; /* no output edit */
runtty            631 src/dps8/dps8_console.c     tcsetattr (0, TCSA_TYPE, & runtty);
runtty           2120 src/simh/sim_console.c struct sgttyb  cmdtty,     runtty;                       /* V6/V7 stty data */
runtty           2135 src/simh/sim_console.c runtty              = cmdtty;                            /* initial run state */
runtty           2136 src/simh/sim_console.c runtty.sg_flags     = cmdtty.sg_flags & ~(ECHO|CRMOD) | CBREAK;
runtty           2156 src/simh/sim_console.c if (ioctl (0, TIOCSETP, &runtty) < 0)
runtty           2222 src/simh/sim_console.c struct termios cmdtty, runtty;
runtty           2230 src/simh/sim_console.c runtty                = cmdtty;
runtty           2231 src/simh/sim_console.c runtty.c_lflag        = runtty.c_lflag & ~(ECHO | ICANON);     /* no echo or edit */
runtty           2232 src/simh/sim_console.c runtty.c_oflag        = runtty.c_oflag & ~OPOST;               /* no output edit */
runtty           2233 src/simh/sim_console.c runtty.c_iflag        = runtty.c_iflag & ~ICRNL;               /* no cr conversion */
runtty           2234 src/simh/sim_console.c runtty.c_cc[VINTR]    = sim_int_char;                          /* interrupt */
runtty           2235 src/simh/sim_console.c runtty.c_cc[VQUIT]    = 0;                                     /* no quit */
runtty           2236 src/simh/sim_console.c runtty.c_cc[VERASE]   = 0;
runtty           2237 src/simh/sim_console.c runtty.c_cc[VKILL]    = 0;
runtty           2238 src/simh/sim_console.c runtty.c_cc[VEOF]     = 0;
runtty           2239 src/simh/sim_console.c runtty.c_cc[VEOL]     = 0;
runtty           2240 src/simh/sim_console.c runtty.c_cc[VSTART]   = 0;                                     /* no host sync */
runtty           2241 src/simh/sim_console.c runtty.c_cc[VSUSP]    = 0;
runtty           2242 src/simh/sim_console.c runtty.c_cc[VSTOP]    = 0;
runtty           2244 src/simh/sim_console.c runtty.c_cc[VREPRINT] = 0;                                     /* no specials */
runtty           2247 src/simh/sim_console.c runtty.c_cc[VDISCARD] = 0;
runtty           2250 src/simh/sim_console.c runtty.c_cc[VWERASE]  = 0;
runtty           2253 src/simh/sim_console.c runtty.c_cc[VLNEXT]   = 0;
runtty           2255 src/simh/sim_console.c runtty.c_cc[VMIN]     = 0;                                     /* no waiting */
runtty           2256 src/simh/sim_console.c runtty.c_cc[VTIME]    = 0;
runtty           2258 src/simh/sim_console.c runtty.c_cc[VDSUSP]   = 0;
runtty           2261 src/simh/sim_console.c runtty.c_cc[VSTATUS]  = 0;
runtty           2270 src/simh/sim_console.c runtty.c_cc[VINTR] = sim_int_char;                      /* in case changed */
runtty           2278 src/simh/sim_console.c if (tcsetattr (0, TCSA_TYPE, &runtty) < 0)