Design a circuit to detect when 3 and only 3 bits are set
out of 8 bits.(eg. o0101100)
Answer Posted / ravichandra
step1: start
step2: mov the byte to accumulator
step3: intialize length = 0 , count = 0
step4: rotate acc. to right through carry.
step5: if carry = 1 , increment count
step6: increment length
step7: if length < 8 , goto step3
step8: if count = 3 , (do required action)
step9: end
| Is This Answer Correct ? | 6 Yes | 4 No |
Post New Answer View All Answers
Do you know what is priority inheritance?
What is the function of watchdog timer in embedded system?
Discuss the concept of yagni.
What is the function of dma controlled in embedded system?
Tell me why is java mostly used in embedded systems?
Tell me what is interrupt latency? How can you reduce it?
Explain what are the differences between analytical and computational modeling?
You have two computers, and you want to get data from one to the other. How could you do it?
What kinds of problems can you hit with lockless model?
What is the need for an infinite loop in embedded systems?
Can we use any function inside isr?
Mention what are buses used for communication in embedded system?
What is the purpose of using critical sections?
What trade offs do you have for resource contention?
What is the function of simple thread poll in embedded system?