Email: Password: Remember Me | Create Account (Free)

Back to Subject List

Old thread has been locked -- no new posts accepted in this thread
???
06/03/00 04:21
Read: times


 
#3015 - RE: Delay code
Here is another example in assembly.

DELAY:
MOV B, #0FFH ; Load 0xFF
; to Register B
WAIT1:
MOV A, #0FFH ;Load/Reload
;Accumulator
;with 0xFF
WAIT2:
DEC A ;Decrement A
JNZ WAIT2 ;Jump to Wait2
;if A = 0
MOV A,B ;Load A with
; with B
DEC A ; Dec A
MOV B,A ; Load B with A
JNZ WAIT1 ;jump to Wait1
RET ; return from
;sub routine





List of 18 messages in thread
TopicAuthorDate
Delay code            01/01/70 00:00      
RE: Delay code            01/01/70 00:00      
RE: Delay code            01/01/70 00:00      
RE: Delay code            01/01/70 00:00      
RE: Delay code            01/01/70 00:00      
RE: Delay code            01/01/70 00:00      
RE: Delay code            01/01/70 00:00      
RE: Delay code            01/01/70 00:00      
RE: Delay code            01/01/70 00:00      
RE: Delay code            01/01/70 00:00      
RE: Delay code            01/01/70 00:00      
RE: Delay code            01/01/70 00:00      
RE: Delay code            01/01/70 00:00      
RE: Delay code            01/01/70 00:00      
Interfacing 8051 with infrared devices            01/01/70 00:00      
RE: Interfacing 8051 with infrared devices            01/01/70 00:00      
RE: Delay code            01/01/70 00:00      
RE: Interfacing 8051 with infrared devices            01/01/70 00:00      

Back to Subject List