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

Re: convert a apple basic program to source code



On Sun, 04 Mar 2001 13:48:31 +0000, Donald Myers <myers@speakeasy.org>
wrote:

>I have a apple II basic program on a 5.25 disk image. how can I convert it
>to a mac text file??
>
>
>D Myers
>
(017- How do I save a BASIC program in ASCII text form?)

The following line added to the front of your Applesoft BASIC program
will save it in a Text file named "LISTFILE". It works in DOS 3.3 or
ProDOS.

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