Re: A83: Slowing down a program
[Prev][Next][Index][Thread]
Re: A83: Slowing down a program
why all that?
just do halt.
-Ahmed
-----Original Message-----
From: Olle Hedman <oh@hem.passagen.se>
To: assembly-83@lists.ticalc.org <assembly-83@lists.ticalc.org>
Date: Monday, June 22, 1998 4:27 PM
Subject: Re: A83: Slowing down a program
>
>At 15:38 1998-06-22 -0400, you wrote:
>>
>>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
>>
>
>
>just make a litle "do-nothing" delay-loop..
>
>like:
>
> ld b,0ffh
>loop nop
> djnz loop
>
>
>or if you want a longer delay:
>
> ld b,0ffh
>loop push hl
> pop hl
> djnz loop
>
>or something similar..
>
>I guess you get the idea.. :)
>
>//Olle
>
>
Follow-Ups: