diff options
Diffstat (limited to 'sys/arch/alpha/wscons/ascii.h')
-rw-r--r-- | sys/arch/alpha/wscons/ascii.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/sys/arch/alpha/wscons/ascii.h b/sys/arch/alpha/wscons/ascii.h new file mode 100644 index 00000000000..dc4775022c9 --- /dev/null +++ b/sys/arch/alpha/wscons/ascii.h @@ -0,0 +1,10 @@ +/* $NetBSD: ascii.h,v 1.1 1996/04/12 02:00:42 cgd Exp $ */ + +#define ASCII_BEL 0x07 /* bell */ +#define ASCII_BS 0x08 /* backspace */ +#define ASCII_HT 0x09 /* horizontal tab */ +#define ASCII_LF 0x0a /* line feed */ +#define ASCII_VT 0x0b /* vertical tab(?); up one line */ +#define ASCII_NP 0x0c /* next page; form feed */ +#define ASCII_CR 0x0d /* carriage return */ +#define ASCII_ESC 0x1b /* escape */ |