[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: ASCII art / FIGlet



"Craig Bower" <to.email.me@post.a.request.message> wrote in message 
news:wlQWd.11849$KI2.3889@clgrps12...

Correction:  This won't work! :(

> 110 GR
> 110 FOR I = 8192 TO 9210
> 115 REM ** TO 9210 should really be 9216, but is safety
> 116 REM ** net for any resident applesoft program.
> 120 POKE 9216 - I , PEEK(I)
> 130 NEXT I

Try this instead:

110 GR : X = 0
110 FOR I = 8192 TO 9210
120 POKE 1024 + X , PEEK ( I )
130 X=X+1
140 NEXT I

It's still not even remotely pretty ASCII art at the
end,  but it'll get you started with more complex
displays.

Later,
Craig