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

  1. ;-----------------------------------------------------------------
  2. ; DEFINES.16
  3. ;
  4. ; This text file contains the set of ASCII control characters (in
  5. ; hexadecimal).
  6. ;-----------------------------------------------------------------
  7.  
  8.         .RADIX  16              ; Set the radix (base) to 16
  9.  
  10.         .define NUL  00         ; Null
  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         ; Bell
  18.         .define BS   08         ; Backspace
  19.         .define HT   09         ; Horizontal tab
  20.         .define LF   0A         ; Linefeed
  21.         .define VT   0B
  22.         .define FF   0C         ; Formfeed
  23.         .define CR   0D         ; Carriage return
  24.         .define SO   0E         ; Shift-Out
  25.         .define SI   0F         ; Shift-In
  26.         .define DLE  10
  27.         .define DC1  11
  28.         .define DC2  12
  29.         .define DC3  13
  30.         .define DC4  14
  31.         .define NAK  15
  32.         .define SYN  16
  33.         .define ETB  17
  34.         .define CAN  18
  35.         .define EM   19
  36.         .define SUB  1A
  37.         .define ESC  1B         ; Escape character
  38.         .define FS   1C
  39.         .define GS   1D
  40.         .define RS   1E
  41.         .define US   1F
  42.         .define DEL  7F
  43.