Thanks John, I may look into that.
For now, I think I figured it out. I created a program called ULOAD.BA and
placed it on the TPDD. Then went into the programs and replace MENU with
RUN"0:ULOAD.BA"
ULOAD.BA is left in memory but it's only a couple bytes since it contains
10 CLEAR0:MENU
Seems to work for now.
Kurt
On Tuesday, April 5, 2016 8:52 AM, John R. Hogerhuis <[email protected]>
wrote:
Maybe additionally stage MENU in the keyboard buffer?
-- John.
On Tuesday, April 5, 2016, Kurt McCullum <[email protected]> wrote:
Got a question for the experts. Right now I've got a little BASIC program that
acts as a menu and loads other BASIC programs from the TPDD (emulated). For
example pressing a 1 executes RUN "0:SPREAD.BA", 2 executes RUN "0:THINK.BA"
This works fine, but when SPREAD.BA or THINK.BA are done and return to the main
menu, the program is still in memory. I know this is by design, but I'm
wondering if there is a way to clear the unsaved BASIC file with something
other than the NEW command.
NEW clears it but doesn't take me back to the menu.
Kurt