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

Re: Applesoft code, how to print?



To see the code of an Applesoft program you use the LIST command. To send the
listing to the printer use:

PR#1 press Return
CTRL-I80N press RETURN (That's a Control I)
LIST press Return
PR#0 press Return

To save your file into a textfile to load into a text editor, enter this line
of code and the run your program.

0 POKE 33,33:PRINT CHR$(4)OPEN PROGRAM":PRINT CHR$(4)"WRITE PROGRAM":LIST
1,:PRINT CHR$(4)"CLOSE":TEXT:HOME:END

I hope that helped.

LJSilicon