[A89] Re: 8/24k size limit
[Prev][Next][Index][Thread]
[A89] Re: 8/24k size limit
Yes, the only code block where I affect homequit is the following code,
which processes the key press at the home screen when the prog loads:
-----------------------
if (key == KEY_ESC) {
homequit = 1;
exit(0);
}
------------------------
So right after it makes homequit = 1, it goes to the exit function right
away. Both the grayon and interrupt functions are after this, so there is
no way to have homequit == 1 and have grayscale on or interrupt five be
modified.
Brett
----- Original Message -----
From: "Olle Hedman" <alh@home.se>
To: <assembly-89@lists.ticalc.org>
Sent: Monday, August 26, 2002 6:20 AM
Subject: [A89] Re: 8/24k size limit
>
> Brett Simmers wrote:
>
> > if (homequit == 1) goto exitquick;
> > GrayOff();
> > clrscr();
> > SetIntVec (AUTO_INT_5, OldInt5);
> >
> >
>
> I assume you are 100% sure, that you have not turned on grayscale or
> changed int5 in any way when homequit == 1?
>
> ///Olle
>
>
>
Follow-Ups:
References: