153887Smckusick /* 2*63308Sbostic * Copyright (c) 1992, 1993 3*63308Sbostic * The Regents of the University of California. All rights reserved. 453887Smckusick * 553887Smckusick * This code is derived from software contributed to Berkeley by 653887Smckusick * Sony Corp. and Kazumasa Utashiro of Software Research Associates, Inc. 753887Smckusick * 853887Smckusick * %sccs.include.redist.c% 953887Smckusick * 1053887Smckusick * from: $Hdr: rsreg.h,v 4.300 91/06/09 06:43:04 root Rel41 $ SONY 1153887Smckusick * 12*63308Sbostic * @(#)rsreg.h 8.1 (Berkeley) 06/11/93 1353887Smckusick */ 1453887Smckusick 1553887Smckusick #ifndef __RSREG__ 1653887Smckusick #define __RSREG__ 1 1753887Smckusick 1853887Smckusick /* bits in dm lsr, copied from dh.c */ 1953887Smckusick #define DML_USR 0001000 /* usr modem sig, not a real DM bit */ 2053887Smckusick #define DML_DSR 0000400 /* data set ready, not a real DM bit */ 2153887Smckusick #define DML_RNG 0000200 /* ring */ 2253887Smckusick #define DML_CAR 0000100 /* carrier detect */ 2353887Smckusick #define DML_CTS 0000040 /* clear to send */ 2453887Smckusick #define DML_SR 0000020 /* secondary receive */ 2553887Smckusick #define DML_ST 0000010 /* secondary transmit */ 2653887Smckusick #define DML_RTS 0000004 /* request to send */ 2753887Smckusick #define DML_DTR 0000002 /* data terminal ready */ 2853887Smckusick #define DML_LE 0000001 /* line enable */ 2953887Smckusick 3053887Smckusick #endif /* !__RSREG__ */ 31