Mercurial > hg > Members > kono > nitros9-code
annotate defs/const.d @ 1764:c51d21c94682
Fixed problem in swset where query needed lbra.
Converted all files to Unix EOL
author | boisy |
---|---|
date | Fri, 01 Apr 2005 17:01:46 +0000 |
parents | 27e85b681dab |
children |
rev | line source |
---|---|
1626 | 1 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |
1760
27e85b681dab
Fixed DEFS issue in 6809l2 and 6309l2 (thanks Rodney!)
boisy
parents:
1630
diff
changeset
|
2 ; const - Constant Chracter Definitions |
1626 | 3 ; |
4 ; $Id$ | |
5 ; | |
6 ; Edt/Rev YYYY/MM/DD Modified by | |
7 ; Comment | |
8 ; ------------------------------------------------------------------ | |
9 ; 2004/05/17 Boisy G. Pitre | |
1760
27e85b681dab
Fixed DEFS issue in 6809l2 and 6309l2 (thanks Rodney!)
boisy
parents:
1630
diff
changeset
|
10 ; Created. |
1626 | 11 |
1630
7af4d12008f4
Updated ChangeLogs with slight formatting differences
boisy
parents:
1626
diff
changeset
|
12 .title Constant Character Definitions |
1626 | 13 |
14 C$NULL == 0h00 ; Null char | |
15 C$RPET == 0h01 ; (CTRL-A - SOH) Repeat last input line | |
16 C$INTR == 0h03 ; (CTRL-C - ETX) Keyboard interrupt | |
17 C$RPRT == 0h04 ; (CTRL-D - EOT) Reprint current input line | |
18 C$QUIT == 0h05 ; (CTRL-E - ENQ) Keyboard Abort | |
19 C$BELL == 0h07 ; (CTRL-G - BEL) Line overflow warning | |
20 C$BSP == 0h08 ; (CTRL-H - BS ) Back space | |
21 C$RARR == 0h09 ; Right Arrow | |
22 C$EL == 0h05 ; Erase Line | |
23 C$LF == 0h0A ; Line feed | |
24 C$HOME == 0h0B ; Home position Code | |
25 C$Clsgr == 0h15 ; Graphic screen clear (use FM-11) | |
26 C$Clsall == 0h16 ; Graphic & character clear (use FM-11) | |
27 C$CR == 0h0D ; Carriage return | |
28 C$FORM == 0h0C ; (CTRL-L - FF ) Form Feed ... screen clear | |
29 C$SI == 0h0F ; Shift IN Code | |
30 C$SO == 0h0E ; Shift OUT Code | |
31 C$DELETE == 0h10 ; Delete char (for SCF enhanced line editing) | |
32 C$XON == 0h11 ; (CTRL-Q - DC1) Transmit Enable | |
33 C$INSERT == C$XON ; Insert char (for SCF enhanced line editing) | |
34 C$XOFF == 0h13 ; (CTRL-S - DC3) Transmit Disable | |
35 C$PLINE == C$XOFF ; Print remaining line (for SCF enhanced line editing) | |
36 C$PAUS == 0h17 ; (CTRL-W - ETB) Pause character | |
37 C$DEL == 0h18 ; (CTRL-X - CAN) Delete line | |
38 C$SHRARR == 0h19 ; Shift Right-Arrow | |
39 C$EOF == 0h1B ; (CTRL-[ - ESC) END of file | |
40 C$RGT == 0h1C ; Cursor right | |
41 C$LFT == 0h1D ; Cursor left | |
42 C$UP == 0h1E ; Cursor up | |
43 C$DWN == 0h1F ; Cursor down | |
44 C$SPAC == 0h20 ; Space | |
45 C$PERD == '. | |
46 C$COMA == ', | |
47 | |
48 |