[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: ProDOS Error Message re "NO BUFFERS AVAILABLE"
On May 28, 11:35 pm, "John B. Matthews" <nos...@nospam.invalid> wrote:
> In article
> <d9afa940-0d51-4911-8b45-92e162f46...@u7g2000vbq.googlegroups.com>,
>
>
>
> KP <kjpm...@gmail.com> wrote:
> > > > ENDFILE is 30704
> > > > SUBTYPE is A=$07FD
>
> > > > Does that help?
>
> > > It appears to be loading over the last page of the main text
> > > screen. That page is protected in the ProDOS System Bit Map, which
> > > "occupies bytes $BF58 through $BF6F in the system global page and
> > > it represents the status of each 256-byte page of memory from $0000
> > > through $BFFF." The default value is $CF; bit 0 controls page 7, so
> > > try putting $CE in $BF58.
> [...]
> > How do I do that?
>
> $BF58 = 48984 and $CE = 206 so
>
> POKE 48984, 206
> BLOAD ...
>
> --
> John B. Matthews
> trashgod at gmail dot com
> <http://sites.google.com/site/drjohnbmatthews>
Thank you!