home *** CD-ROM | disk | FTP | other *** search
- /*
- * $Header: /ax/networking:include/sys/ttydev.h:networking 1.1 $
- * $Source: /ax/networking:include/sys/ttydev.h: $
- *
- * Copyright (c) 1988 Acorn Computers Ltd., Cambridge, England
- *
- * $Log: ttydev.h,v $
- * Revision 1.1 95/01/11 10:20:05 kwelton
- * Initial revision
- *
- * Revision 1.3 88/06/17 20:22:12 beta
- * Acorn Unix initial beta version
- *
- */
- /* @(#)ttydev.h 1.2 87/05/15 3.2/4.3NFSSRC */
- /*
- * Copyright (c) 1982, 1986 Regents of the University of California.
- * All rights reserved. The Berkeley software License Agreement
- * specifies the terms and conditions for redistribution.
- *
- * @(#)ttydev.h 7.1 (Berkeley) 6/4/86
- */
-
- /*
- * Terminal definitions related to underlying hardware.
- */
- #ifndef _TTYDEV_
- #define _TTYDEV_
-
- /*
- * Speeds
- */
- #define B0 0
- #define B50 1
- #define B75 2
- #define B110 3
- #define B134 4
- #define B150 5
- #define B200 6
- #define B300 7
- #define B600 8
- #define B1200 9
- #define B1800 10
- #define B2400 11
- #define B4800 12
- #define B9600 13
- #define EXTA 14
- #define EXTB 15
-
- #ifdef KERNEL
- /*
- * Hardware bits.
- * SHOULD NOT BE HERE.
- */
- #define DONE 0200
- #define IENABLE 0100
-
- /*
- * Modem control commands.
- */
- #define DMSET 0
- #define DMBIS 1
- #define DMBIC 2
- #define DMGET 3
- #endif
- #endif
-
- /* EOF ttydev.h */
-