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

Back to Subject List

Old thread has been locked -- no new posts accepted in this thread
???
03/25/04 08:14
Read: times


 
#67402 - RE: 4-bit serial-parallel converter
Responding to: ???'s previous message
hi,
All three methods mentioned in the joke are correct to divide accumulator by 16.
if with some notes:
MOV B,#16 
DIV AB
...requires 4 bytes, 6 cycles.
RR A
RR A
RR A
RR A
ANL A,#00001111b
...requires 6 bytes, 5 cycles.
SWAP A
ANL A,#00001111b
...requires 3 bytes, 2 cycles.

Regards,
Oleg

List of 11 messages in thread
TopicAuthorDate
4-bit serial-parallel converter            01/01/70 00:00      
   RE: 4-bit serial-parallel converter            01/01/70 00:00      
      PC Serial Port            01/01/70 00:00      
         RE: 16C550            01/01/70 00:00      
   RE: 4-bit serial-parallel converter            01/01/70 00:00      
      RE: 4-bit serial-parallel converter            01/01/70 00:00      
         RE: 4-bit serial-parallel converter            01/01/70 00:00      
            RE: 4-bit serial-parallel converter            01/01/70 00:00      
               RE: 4-bit serial-parallel converter            01/01/70 00:00      
   RE: 4-bit serial-parallel converter            01/01/70 00:00      
      PC Serial Port            01/01/70 00:00      

Back to Subject List