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

Back to Subject List

Old thread has been locked -- no new posts accepted in this thread
???
02/06/03 09:55
Read: times


 
#38389 - Now 1 Minute delay program in assembly
Responding to: ???'s previous message
using this program which i used for 1 second delay for i minute:-

ORG 00H
MOV R0,#60D
DELAY2: MOV R1,#51D
MOV R2,#101D
DELAY1: MOV R3,#101D

DJNZ R3,$ (we get a value 100 after that,)
DJNZ R2,DELAY1 (R3 runs 100*100)
DJNZ R1,DELAY1 (Ro firstly decrement to 50 ,then comes the value 100*100, so the program [(100*100)+(100*100)]*50 )
(Now to get a 1 minute delay we just multiply the above equation by 60 rite? as iam having problems with simulator iam unable to see what is happening with this program )
DJNZ R0,DELAY2
CPL P1.0
RET

Is it ok? or do i have to do something else
Now if the same i want to do with a timer then please explain how i can?



List of 19 messages in thread
TopicAuthorDate
1 Minute Delay            01/01/70 00:00      
   RE: 1 Minute Delay            01/01/70 00:00      
   RE: 1 Minute Delay            01/01/70 00:00      
   RE: 1 Minute Delay            01/01/70 00:00      
   Check my Delay            01/01/70 00:00      
      checking on simulator            01/01/70 00:00      
         Now 1 Minute delay program in assembly            01/01/70 00:00      
         RE: delay of x minutes            01/01/70 00:00      
            I really tried hard but no use            01/01/70 00:00      
               RE: I really tried hard but no use            01/01/70 00:00      
   RE: Check my Delay            01/01/70 00:00      
   RE: 1 Minute Delay            01/01/70 00:00      
   RE: I really tried hard but no use            01/01/70 00:00      
      Ijaz is right            01/01/70 00:00      
         RE: Waqar            01/01/70 00:00      
   RE: Software            01/01/70 00:00      
   difference between counter and timer            01/01/70 00:00      
      RE: difference between counter and timer            01/01/70 00:00      
      RE: difference between counter and timer            01/01/70 00:00      

Back to Subject List