home *** CD-ROM | disk | FTP | other *** search
/ Crawly Crypt Collection 2 / crawlyvol2.bin / program / misc / mas / mashelp / mascii.def < prev    next >
Encoding:
Modula Definition  |  1990-07-20  |  1.6 KB  |  56 lines

  1.  
  2. DEFINITION MODULE ASCII;
  3.   (*********************************************************************
  4.    *    Copyright (C) 1984 Interface Technologies Corporation.         *
  5.    *    All Rights Reserved.                                           *
  6.    *                                                                   *
  7.    *    Registered users are hereby granted the right to use the       *
  8.    *    following program in custom applications.                      *
  9.    *    This permission does not include the right to redistribute     *
  10.    *    this code.                                                     *
  11.    *********************************************************************)
  12.   (*********************************************************************
  13.    * Purpose: ASCII exports the names of the standard ASCII characters
  14.    *          and the Modula-2 standard line separator, EOL.
  15.    * Author : Rob Hafernik
  16.    * Date   : 12-84
  17.    * Version: 1.2
  18.    *********************************************************************)
  19.   CONST
  20.     EOL = 36C;
  21.     nul = 0C;
  22.     soh = 1C;
  23.     stx = 2C;
  24.     etx = 3C;
  25.     eot = 4C;
  26.     enq = 5C;
  27.     ack = 6C;
  28.     bel = 7C;
  29.     bs = 10C;
  30.     ht = 11C;
  31.     lf = 12C;
  32.     vt = 13C;
  33.     ff = 14C;
  34.     cr = 15C;
  35.     so = 16C;
  36.     si = 17C;
  37.     dle = 20C;
  38.     dc1 = 21C;
  39.     dc2 = 22C;
  40.     dc3 = 23C;
  41.     dc4 = 24C;
  42.     nak = 25C;
  43.     syn = 26C;
  44.     etb = 27C;
  45.     can = 30C;
  46.     em = 31C;
  47.     sub = 32C;
  48.     esc = 33C;
  49.     fs = 34C;
  50.     gs = 35C;
  51.     rs = 36C;
  52.     us = 37C;
  53.     space = 40C;
  54.     del = 177C;
  55.   END ASCII.
  56. ə