Re: A82: get key
[Prev][Next][Index][Thread]
Re: A82: get key
In a message dated 98-03-11 15:13:04 EST, you (or was it
ME??????????????????????????????????????????) write:
> In a message dated 98-03-11 11:25:24 EST, you write:
>
> > how do i check to see if any key except for 2nd was pressed during a
loop??
>
> >
> > Example:
> > ----------------------------
> > MY GAME
> >
> > Press Any Key To Continue...
> > ----------------------------
> >
> >
> >
> > --
> > Craig
> > http://cjslush.home.mindspring.com
> > ***
>
> loop:
> call GET_KEY
> cp $54
> jr z, loop
> <more code>
>
> ~Adamman
after reading greg's post, I realized the error of my ways. somewhere in
there (most likely before the cp 54 - and 54 should be just that, not $54)
should be:
or a
jr z, loop
THERE!
~Adamman
Follow-Ups: