-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathL13-1.BAS
40 lines (40 loc) · 1.78 KB
/
L13-1.BAS
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
60300 REM *******************************************
60310 REM Set reference and character strings.
60320 REM This subroutine initalizes the character
60330 REM generation package--it should be called
60340 REM just once before the first call to the
60350 REM character drawing subroutine.
60360 REM *******************************************
60370 DIM ZZA$(27):ZZA=0:ZZC=3:ZZS=4:ZZX=7:ZZY=0
60380 REM ZZZ$ is a reference string used to find the print char
60390 ZZZ$="ABCDEFGHIJKLMNOPQRSTUVWXYZ "
60400 REM Each of the strings below is used to define
60410 ZZA$(1)="BD1D5BU2R4BD2U5H1L2G1BU1" 'A
60420 ZZA$(2)="D6R3E1U1H1L3BR3E1U1H1L3" 'B
60430 ZZA$(3)="BD1D4F1R2E1BU4H1L2G1BU" 'C
60440 ZZA$(4)="D6R3E1U4H1L3" 'D
60450 ZZA$(5)="D6R4BU3BL1L3BU3R4BL4" 'E
60460 ZZA$(6)="D6BU3R3BL3U3R4BL4" 'F
60470 ZZA$(7)="BD1D4F1R3U3L1BU3BR1L3G1BU1" 'G
60480 ZZA$(8)="D6BU3R4BD3U6BL4" 'H
60490 ZZA$(9)="BD6BR1R2BL1U6BR1L2BL1" 'I
60500 ZZA$(10)="BD5F1R1E1U5BL3" 'J
60510 ZZA$(11)="D6BU3R1F3BU6G3L1BU3" 'K
60520 ZZA$(12)="D6R4BL4BU6" 'L
60530 ZZA$(13)="D6BR4U6G2H2" 'M
60540 ZZA$(14)="D6BR4U6BD4H4" 'N
60550 ZZA$(15)="BD1D4F1R2E1U4H1L2G1BU1" 'O
60560 ZZA$(16)="D6BU3R3E1U1H1L3" 'P
60570 ZZA$(17)="BD1D4F1R1BR2H2BF1BG1E2U3H1L2G1BU1"
60580 ZZA$(18)="D6BR4H3BL1R3E1U1H1L3" 'R
60590 ZZA$(19)="BD6R3E1U1H1L2H1U1E1R3BL4" 'S
60600 ZZA$(20)="BD6BR2U6BR2L4" 'T
60610 ZZA$(21)="D5F1R3E1U5BL4" 'U
60620 ZZA$(22)="D3F1D1F1E1U1E1U3BL4" 'V
60630 ZZA$(23)="D5F1E1U1BD1F1E1U5BL4" 'W
60640 ZZA$(24)="BD6U1E4U1BD6U1H4U1" 'X
60650 ZZA$(25)="D2F2D2BU2E2U2BL4" 'Y
60660 ZZA$(26)="BD6BR4L4U1E4U1L4" 'Z
60670 ZZA$(27)="" '<SPACE>
60680 RETURN