home *** CD-ROM | disk | FTP | other *** search
/ High Voltage Shareware / high1.zip / high1 / DIR16 / T2B120A.ZIP / DEFINES.10 < prev    next >
Text File  |  1994-01-03  |  1KB  |  43 lines

  1. ;-----------------------------------------------------------------
  2. ; DEFINES.10
  3. ;
  4. ; This text file contains the set of ASCII control characters (in
  5. ; decimal).
  6. ;-----------------------------------------------------------------
  7.  
  8.         .RADIX  10              ; Set the radix (base) to 10
  9.  
  10.         .define NUL  00
  11.         .define SOH  01
  12.         .define STX  02
  13.         .define ETX  03
  14.         .define EOT  04
  15.         .define ENQ  05
  16.         .define ACK  06
  17.         .define BEL  07
  18.         .define BS   08         ; Backspace
  19.         .define HT   09         ; Horizontal tab
  20.         .define LF   10         ; Linefeed
  21.         .define VT   11
  22.         .define FF   12         ; Formfeed
  23.         .define CR   13         ; Carriage return
  24.         .define SO   14         ; Shift-Out
  25.         .define SI   15         ; Shift-In
  26.         .define DLE  16
  27.         .define DC1  17
  28.         .define DC2  18
  29.         .define DC3  19
  30.         .define DC4  20
  31.         .define NAK  21
  32.         .define SYN  22
  33.         .define ETB  23
  34.         .define CAN  24
  35.         .define EM   25
  36.         .define SUB  26
  37.         .define ESC  27         ; Escape character
  38.         .define FS   28
  39.         .define GS   29
  40.         .define RS   30
  41.         .define US   31
  42.         .define DEL  127
  43.