ASCII.def 514 B

1234567891011121314151617181920
  1. (*$Foreign*)
  2. DEFINITION MODULE ASCII;
  3. (*
  4. Module: Mnemonics for ASCII control characters
  5. From: ???
  6. Version: $Id$
  7. *)
  8. CONST
  9. nul = 00C; soh = 01C; stx = 02C; etx = 03C;
  10. eot = 04C; enq = 05C; ack = 06C; bel = 07C;
  11. bs = 10C; ht = 11C; lf = 12C; vt = 13C;
  12. ff = 14C; cr = 15C; so = 16C; si = 17C;
  13. dle = 20C; dc1 = 21C; dc2 = 22C; dc3 = 23C;
  14. dc4 = 24C; nak = 25C; syn = 26C; etb = 27C;
  15. can = 30C; em = 31C; sub = 32C; esc = 33C;
  16. fs = 34C; gs = 35C; rs = 36C; us = 37C;
  17. del = 177C;
  18. END ASCII.