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

Back to Subject List

Old thread has been locked -- no new posts accepted in this thread
???
07/12/04 13:46
Read: times


 
#74053 - RE: Assembler!
Responding to: ???'s previous message
If you really do want to swap the high and low nybbles:

unsigned char Swap(unsigned char x)
{
return(x<<4 | x>>4);
}

If you are trying to output one nybble at a time onto the same half of the external data bus then look at Oleg's first post.

List of 11 messages in thread
TopicAuthorDate
4 bit bus?            01/01/70 00:00      
   RE: 4 bit bus?            01/01/70 00:00      
      RE: 4 bit bus?            01/01/70 00:00      
         RE: 4 bit bus?            01/01/70 00:00      
      RE: 4 bit bus?            01/01/70 00:00      
         RE: 4 bit bus?            01/01/70 00:00      
            RE: 4 bit bus?            01/01/70 00:00      
            Assembler!            01/01/70 00:00      
               RE: Assembler!            01/01/70 00:00      
                  RE: Assembler!            01/01/70 00:00      
                  RE: Assembler!            01/01/70 00:00      

Back to Subject List