home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD2.iso / Programming / Misc / MODULAV2GERMAN.DMS / in.adf / Def.zoo / ASCII.def < prev    next >
Encoding:
Modula Definition  |  1988-09-14  |  672 b   |  22 lines

  1. (* $M- No Implementation please *)
  2. DEFINITION MODULE ASCII;
  3. (* 2.0 / 29.4.87 / ms,red *)
  4.  
  5. CONST
  6.  nul = 00C;  soh = 01C;  stx = 02C;  etx = 03C;
  7.  eot = 04C;  enq = 05C;  ack = 06C;  bel = 07C;
  8.  bs  = 10C;  ht  = 11C;  lf  = 12C;  vt  = 13C;
  9.  ff  = 14C;  cr  = 15C;  so  = 16C;  si  = 17C;
  10.  dle = 20C;  dc1 = 21C;  dc2 = 22C;  dc3 = 23C;
  11.  dc4 = 24C;  nak = 25C;  syn = 26C;  etb = 27C;
  12.  can = 30C;  em  = 31C;  sub = 32C;  esc = 33C;
  13.  fs  = 34C;  gs  = 35C;  rs  = 36C;  us  = 37C;
  14.  sp  = ' ';
  15.  del = 177C;
  16.  eol = lf;    (* end of line character          *)
  17.  eof = fs;    (* end of file character ctrl-"\" *)
  18.  csi = 233C;  (* command sequence introducer    *)
  19.  
  20. END ASCII.
  21.  
  22.