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           2119 src/simh/sim_console.c struct sgttyb  cmdtty,     runtty;                       /* V6/V7 stty data */
runtty           2134 src/simh/sim_console.c runtty              = cmdtty;                            /* initial run state */
runtty           2135 src/simh/sim_console.c runtty.sg_flags     = cmdtty.sg_flags & ~(ECHO|CRMOD) | CBREAK;
runtty           2155 src/simh/sim_console.c if (ioctl (0, TIOCSETP, &runtty) < 0)
runtty           2221 src/simh/sim_console.c struct termios cmdtty, runtty;
runtty           2229 src/simh/sim_console.c runtty                = cmdtty;
runtty           2230 src/simh/sim_console.c runtty.c_lflag        = runtty.c_lflag & ~(ECHO | ICANON);     /* no echo or edit */
runtty           2231 src/simh/sim_console.c runtty.c_oflag        = runtty.c_oflag & ~OPOST;               /* no output edit */
runtty           2232 src/simh/sim_console.c runtty.c_iflag        = runtty.c_iflag & ~ICRNL;               /* no cr conversion */
runtty           2233 src/simh/sim_console.c runtty.c_cc[VINTR]    = sim_int_char;                          /* interrupt */
runtty           2234 src/simh/sim_console.c runtty.c_cc[VQUIT]    = 0;                                     /* no quit */
runtty           2235 src/simh/sim_console.c runtty.c_cc[VERASE]   = 0;
runtty           2236 src/simh/sim_console.c runtty.c_cc[VKILL]    = 0;
runtty           2237 src/simh/sim_console.c runtty.c_cc[VEOF]     = 0;
runtty           2238 src/simh/sim_console.c runtty.c_cc[VEOL]     = 0;
runtty           2239 src/simh/sim_console.c runtty.c_cc[VSTART]   = 0;                                     /* no host sync */
runtty           2240 src/simh/sim_console.c runtty.c_cc[VSUSP]    = 0;
runtty           2241 src/simh/sim_console.c runtty.c_cc[VSTOP]    = 0;
runtty           2243 src/simh/sim_console.c runtty.c_cc[VREPRINT] = 0;                                     /* no specials */
runtty           2246 src/simh/sim_console.c runtty.c_cc[VDISCARD] = 0;
runtty           2249 src/simh/sim_console.c runtty.c_cc[VWERASE]  = 0;
runtty           2252 src/simh/sim_console.c runtty.c_cc[VLNEXT]   = 0;
runtty           2254 src/simh/sim_console.c runtty.c_cc[VMIN]     = 0;                                     /* no waiting */
runtty           2255 src/simh/sim_console.c runtty.c_cc[VTIME]    = 0;
runtty           2257 src/simh/sim_console.c runtty.c_cc[VDSUSP]   = 0;
runtty           2260 src/simh/sim_console.c runtty.c_cc[VSTATUS]  = 0;
runtty           2269 src/simh/sim_console.c runtty.c_cc[VINTR] = sim_int_char;                      /* in case changed */
runtty           2277 src/simh/sim_console.c if (tcsetattr (0, TCSA_TYPE, &runtty) < 0)