1*9557Ssam /* ttydev.h 4.2 82/12/05 */ 29399Ssam 39399Ssam /* 49399Ssam * Terminal definitions related to underlying hardware. 59399Ssam */ 6*9557Ssam #ifndef _TTYDEV_ 7*9557Ssam #define _TTYDEV_ 89399Ssam 9*9557Ssam /* hardware bits */ 10*9557Ssam #define DONE 0200 11*9557Ssam #define IENABLE 0100 12*9557Ssam 139399Ssam /* 149399Ssam * Speeds 159399Ssam */ 169399Ssam #define B0 0 179399Ssam #define B50 1 189399Ssam #define B75 2 199399Ssam #define B110 3 209399Ssam #define B134 4 219399Ssam #define B150 5 229399Ssam #define B200 6 239399Ssam #define B300 7 249399Ssam #define B600 8 259399Ssam #define B1200 9 269399Ssam #define B1800 10 279399Ssam #define B2400 11 289399Ssam #define B4800 12 299399Ssam #define B9600 13 309399Ssam #define EXTA 14 319399Ssam #define EXTB 15 329399Ssam 339399Ssam #ifdef KERNEL 349399Ssam /* 359399Ssam * Modem control commands. 369399Ssam */ 379399Ssam #define DMSET 0 389399Ssam #define DMBIS 1 399399Ssam #define DMBIC 2 409399Ssam #define DMGET 3 419399Ssam #endif 42*9557Ssam #endif 43