-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcodechars.pas
78 lines (71 loc) · 1.43 KB
/
codechars.pas
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
unit codechars;
(* Copyright (c) 2003 - 2006 Julian Moss, G4ILO
Released under the GNU General Public License Version 2
(see http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt) *)
{$mode objfpc}
{$H+}
{$J-}
interface
const
code: array[32..90] of string =
('', {32 - space }
'.-...', {33 - ! <AS>}
'',
'-.--.', {35 - # <KN>}
'...-.-', {36 - $ <SK>}
'...-.', {37 - % <SN>}
'-.-.-', {38 - & <KA>}
'',
'',
'',
'...-.-', {42 - * <SK>}
'.-.-.', {43 - + <AR>}
'--..--', {44 - , }
'-....-', {45 - - }
'.-.-.-', {46 - . }
'-..-.', {47 - / }
'-----', {48 - 0 }
'.----',
'..---',
'...--',
'....-',
'.....',
'-....',
'--...',
'---..',
'----.', {57 - 9 }
'',
'',
'',
'-...-', {61 - = <BT>}
'',
'..--..', {63 - ? }
'.-.-', {64 - @ <AA>}
'.-', {65 - A }
'-...',
'-.-.',
'-..',
'.',
'..-.',
'--.',
'....',
'..',
'.---',
'-.-',
'.-..',
'--',
'-.',
'---',
'.--.',
'--.-',
'.-.',
'...',
'-',
'..-',
'...-',
'.--',
'-..-',
'-.--',
'--..');
implementation
end.