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

Back to Subject List

Old thread has been locked -- no new posts accepted in this thread
???
02/15/01 20:52
Read: times


 
#9386 - RE: What does this line do ??
ANL A,#$0F --> A = A and 0F
ANL P1,#$F0 -> P1 = P1 and F0

if A = 01001100 after use ANL A,#$0F
A = 00001100
(Hi bits were lost, kept only low-bits)

if P1 = 10110110 after use ANL P1,#$F0
P1 = 10110000
(Low bits were lost, kept only hi-bits)


List of 6 messages in thread
TopicAuthorDate
What does this line do ??            01/01/70 00:00      
RE: What does this line do ??            01/01/70 00:00      
RE: What does this line do ??            01/01/70 00:00      
RE: What does this line do ??            01/01/70 00:00      
RE: What does this line do ??            01/01/70 00:00      
RE: What does this line do ??            01/01/70 00:00      

Back to Subject List