Parent: [c017f0] (diff)

Child: [8d1c2d] (diff)

Download this file

ASCII.def    22 lines (16 with data), 779 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
DEFINITION MODULE ASCII;
(*-----------------------------------------------------------------------*)
(* Definition von ASCII Zeichen *)
(*-----------------------------------------------------------------------*)
(* $Id: ASCII.def,v 1.1 2015/09/13 20:48:40 mriedl Exp mriedl $ *)
CONST nul = 00C; soh = 01C; stx = 02C; etx = 03C;
eot = 04C; enq = 05C; ack = 06C; bel = 07C;
bs = 10C; ht = 11C; lf = 12C; vt = 13C;
ff = 14C; cr = 15C; so = 16C; si = 17C;
dle = 20C; dcl = 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;
tab = ht;
del = 177C ;
END ASCII.