-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconst.asm
38 lines (35 loc) · 982 Bytes
/
const.asm
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
;==============================================================================
;
; Some definitions used with the RC2014 on-board peripherals:
;
; General TTY
.global CTRLC
.global CTRLG
.global BEL
.global BKSP
.global LF
.global FF
.global CS
.global CR
.global CTRLO
.global CTRLQ
.global CTRLR
.global CTRLS
.global CTRLU
.global ESC
.global DEL
CTRLC = 03H ; Control "C"
CTRLG = 07H ; Control "G"
BEL = 07H ; Bell
BKSP = 08H ; Back space
LF = 0AH ; Line feed
FF = 0CH ; Form feed
CS = 0CH ; Clear screen
CR = 0DH ; Carriage return
CTRLO = 0FH ; Control "O"
CTRLQ = 11H ; Control "Q"
CTRLR = 12H ; Control "R"
CTRLS = 13H ; Control "S"
CTRLU = 15H ; Control "U"
ESC = 1BH ; Escape
DEL = 7FH ; Delete