RE: A83: Re: Time???


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

RE: A83: Re: Time???





how 'bout an actual timer?? with pretty accurate seconds...

-----Original Message-----
From: owner-assembly-83@lists.ticalc.org
[mailto:owner-assembly-83@lists.ticalc.org]On Behalf Of David Phillips
Sent: Monday, January 31, 2000 6:41 PM
To: assembly-83@lists.ticalc.org
Subject: A83: Re: Time???



 call _clrLCD
 ld hl,(3<<8)+5     ; quick guess on centering
 call _puts
 ld bc,180*3
loop:
 halt
 dec bc
 ld a,b
 or c
 jr nz,loop
 ret

Text:
 .db "Mem cleared",0


> How do you make a program in Z80 Assembly do something for a specific
amount
> of time?
> For example:  Let's say you wanted to display 'Mem cleared' for 3 seconds;
> how would you do that in ASM?
>
>





Follow-Ups: References: