; ASCII character definitions for serial video display
; $Id: ascii.inc,v 1.1 2001/01/03 20:06:47 eric Exp $
;
; Copyright 2000, 2001 Eric Smith <eric@brouhaha.com>
;
; This program is free software; you can redistribute it and/or modify
; it under the terms of the GNU General Public License version 2 as published
; by the Free Software Foundation.  Note that permission is not granted
; to redistribute this program under the terms of any other version of the
; General Public License.
;
; This program is distributed in the hope that it will be useful,
; but WITHOUT ANY WARRANTY; without even the implied warranty of
; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
; GNU General Public License for more details.
;
; You should have received a copy of the GNU General Public License
; along with this program; if not, write to the Free Software
; Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
;
; Licenses for non-GPL use may be negotiated with the author.

asc_nul	equ	00h
asc_bel	equ	07h
asc_bs	equ	08h
asc_ht	equ	09h
asc_lf	equ	0ah
asc_ff	equ	0ch
asc_cr	equ	0dh
asc_so	equ	0eh
asc_si	equ	0fh
asc_esc	equ	1ah
asc_del	equ	7fh