home *** CD-ROM | disk | FTP | other *** search
Modula Definition | 1990-07-20 | 1.6 KB | 56 lines |
-
- DEFINITION MODULE ASCII;
- (*********************************************************************
- * Copyright (C) 1984 Interface Technologies Corporation. *
- * All Rights Reserved. *
- * *
- * Registered users are hereby granted the right to use the *
- * following program in custom applications. *
- * This permission does not include the right to redistribute *
- * this code. *
- *********************************************************************)
- (*********************************************************************
- * Purpose: ASCII exports the names of the standard ASCII characters
- * and the Modula-2 standard line separator, EOL.
- * Author : Rob Hafernik
- * Date : 12-84
- * Version: 1.2
- *********************************************************************)
- CONST
- EOL = 36C;
- nul = 0C;
- soh = 1C;
- stx = 2C;
- etx = 3C;
- eot = 4C;
- enq = 5C;
- ack = 6C;
- bel = 7C;
- bs = 10C;
- ht = 11C;
- lf = 12C;
- vt = 13C;
- ff = 14C;
- cr = 15C;
- so = 16C;
- si = 17C;
- dle = 20C;
- dc1 = 21C;
- dc2 = 22C;
- dc3 = 23C;
- dc4 = 24C;
- nak = 25C;
- syn = 26C;
- etb = 27C;
- can = 30C;
- em = 31C;
- sub = 32C;
- esc = 33C;
- fs = 34C;
- gs = 35C;
- rs = 36C;
- us = 37C;
- space = 40C;
- del = 177C;
- END ASCII.
- ə