[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: how to save monitor mode programs
Alistair J Ross writes ...
>
> Hi,
>
> Quick question: How does one save a program to disk which has been written
> in the monitor mode?
>
....
If you are under DOS 3.3 or ProDOS, you can do a BSAVE. For instance, if
the code starts at $0300 and ends at $037F, you could do a RESET or CTRL C to
get to the usual Applesoft BASIC prompt and enter this command to save the
code in a file named "NARF":
BSAVE NARF,A$300,L$80
You can BLOAD the code in NARF (under DOS 3.3 or ProDOS) at the original
location via
BLOAD NARF
There is more info on DOS and ProDOS commands in the FAQs at
http://home.swbell.net/rubywand/Csa2DOSMM.html or, on Ground, at
ftp://ground.ecn.uiowa.edu/apple2/Faqs/Formatted/Csa2DOSMM.txt .
Rubywand