Re: A86: Re: Down+Left
[Prev][Next][Index][Thread]
Re: A86: Re: Down+Left
I remember that Jimmy M. posted a flag that when you set it, it fixes the
current key handler and removes the down/left bug. He posted it on A86 a
long time ago, anyone wanna look it up?
Bill
>
>> Maybe we could rewrite the interrupt using that pop hl method. That
>> could serve as the "patch" people were saying couldn't happen.
>
>The easiest way I can think of to patch it, is to call 66h and then fix
>the getkey if down and left are pressed. I have no idea what getkey
>looks like, or how to fix it ... can someone tell me about how getkey
>reads multiple keypresses?
>The interrupt code would look like this:
>
> pop hl
> call 66h
> ex af,af'
> exx
> ;patch
> ex af,af'
> exx
> ret