home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Compute! Gazette 1987 August
/
1987-08.d64
/
starter
(
.txt
)
< prev
Wrap
Commodore BASIC
|
2022-09-20
|
663b
|
27 lines
10 rem copyright 1987 compute! publications, inc. - all rights reserved
20 poke 53280,0:poke 53281,0:print"[147][159] copyright 1987 compute! pub., inc."
30 printtab(10)"all rights reserved"
40 if l$<>"" then100
50 input"load file (y/n)";a$
60 if left$(a$,1)="n" then100
70 print"[147]*** load ***"
80 input"filename";l$
90 load l$,8,1
100 sys 49152,s:rem s is # of shapes
110 print"[147]*** save ***"
120 rem clear buffer
130 fori=1to10:poke630+i,0:next
140 input"filename [return to abort]";f$
150 if f$="" then print"stop":end
160 l=len(f$)
170 for x=1 to l
180 poke 24559+x,asc(mid$(f$,x,1))
190 next
200 poke 780,4:poke 781,8:poke 782,255
210 sys 65466
220 poke 780,l:poke 781,240:poke 782,95
230 sys 65469
240 poke 251,0:poke 252,32
250 poke 780,251:poke 781,63
260 poke 782,63:sys 65496