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

Back to Subject List

Old thread has been locked -- no new posts accepted in this thread
???
02/28/03 19:03
Read: times


 
#40314 - RE: How to handle program code boundaries?
Responding to: ???'s previous message
Here is one way this kind of thing can be fixed if the code needs a long loop.


        ......
        mov  R0,#13
  loop:
        ...
        ...
        ...
        sjmp   skip
  backref:
        ajmp   loop
  skip:
        ....
        ....
        ....
        dec   R0
        cjne R0,#3,backref
        ....




Its a kludege but it should give you the idea.

Michael Karas



List of 9 messages in thread
TopicAuthorDate
How to handle program code boundaries?            01/01/70 00:00      
   RE: How to handle program code boundaries?            01/01/70 00:00      
      RE: How to handle program code boundaries?            01/01/70 00:00      
         RE: How to handle program code boundaries?            01/01/70 00:00      
            RE: How to handle program code boundaries?            01/01/70 00:00      
               RE: How to handle program code boundaries?            01/01/70 00:00      
   RE: How to handle program code boundaries?            01/01/70 00:00      
      RE: How to handle program code boundaries?            01/01/70 00:00      
         RE: How to handle program code boundaries?            01/01/70 00:00      

Back to Subject List