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

Back to Subject List

Old thread has been locked -- no new posts accepted in this thread
???
05/15/03 21:05
Read: times


 
#45576 - RE: Velocity tracker using an 8051
Responding to: ???'s previous message
SS Ben Sunn:

Please check out the "code library" link on this page for some good multibyte math routines. If they are not immediately useful, they should give you good ideas about the way to write your own.

Although it works, the

org interruptvector
call handler
reti

handler:
.
.
ret

construct is not necessary. Why waste the stack space and the CPU time of the calls and returns if you can write:

org interruptvector
jmp handler

handler:
.
.
reti


List of 8 messages in thread
TopicAuthorDate
Velocity tracker using an 8051            01/01/70 00:00      
   RE: Velocity tracker using an 8051            01/01/70 00:00      
      RE: Velocity tracker using an 8051            01/01/70 00:00      
   RE: Velocity tracker using an 8051            01/01/70 00:00      
   RE: Velocity tracker using an 8051            01/01/70 00:00      
      RE: Velocity tracker using an 8051            01/01/70 00:00      
         RE: Velocity tracker using an 8051            01/01/70 00:00      
         RE: Velocity tracker using an 8051            01/01/70 00:00      

Back to Subject List