Re: A86: Re: programming question


[Prev][Next][Index][Thread]

Re: A86: Re: programming question



> Yes this is what I am doing. I just don't know how to do a pause type of
> routine so the person can view the title screen.

add a little loop like this:

no_key:
 call $5371   ;key pressed->a
 cp $00       ;if no key is pressed
 jr z,no_key  ;go back up to the top


References: