Re: A83: Slowing down a program
[Prev][Next][Index][Thread]
Re: A83: Slowing down a program
Why don't you try this: it slows it down a bit, just change bc to what
ever you what. it may take up a little more space than the other ones
though, but it is what I use. I believe it was also used by Andrew
Ungvarsky in duckhunt.
delay:
PUSH AF
PUSH BC
LD BC,9FFFh ;length->bc
delayLoop:
DEC BC
LD A, B
OR C
JR NZ, delayLoop
POP BC
POP AF
Jimmy
>Heh...I got my fade thing to work, thanks to
>Harper Maddox but it goes
>so fast that the fade is impossible to see. Is there
>a way to have the
>calc wait for just a fraction of a second, so the fade
>is slow enough to be seen? Thanks.
Mark Allen
==
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
/ TI-Magic \
\ Web Page /
/ http://www.angelfire.com/tx/timagic/index.html \
\ TiMagic@Yahoo.com /
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
_________________________________________________________
DO YOU YAHOO!?
Get your free @yahoo.com address at http://mail.yahoo.com
Follow-Ups: