[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Any way to pause an EXEC?
Hi,
Already did that. Iirc, Applesoft loads its program at $0800 by default.
The program I'm cracking actually wants to be loaded at $4000 because I
guess it loads drivers and whatnot into $0800. So I had my pausing program
poke the values in to load at $4000 and the EXEC still stops at first
program load. The Applesoft program being loaded is sixteen sectors, and
the second program is 49 sectors. Once again, this doesn't happen when the
programs either don't exist or are tiny. Where is the EXEC data stored?
Thanks.
"BLuRry" <brendan.robert@gmail.com> wrote in message
1143660268.398970.185300@t31g2000cwb.googlegroups.com">news:1143660268.398970.185300@t31g2000cwb.googlegroups.com...
> OIC -- I misread the first post as if you wanted a simple way to pause
> the execution (which you can also do with CTRL-S as well, like you do
> to slow a catalog.
>
> You might want to change where basic loads programs to avoid clobbering
> the EXEC buffer. If you move applesoft to, say, $2001 or so then it
> might give you some more breathing room, e.g.:
>
> POKE 103,1
> POKE 104,32
> POKE 16384,0
> LOAD PROGRAM1
> ...
>