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
Why does pre-emptive multi-threading used to solve the central controller problem?
How can you reduce memory requirements in embedded systems?
Explain what is the need for an infinite loop in embedded systems?
Explain the uses of timers in embedded system?
What are the uses of the keyword volatile?
Tell me can you have constant volatile variables?
Tell me why embedded system is useful?
What happens when recursion functions are declared inline?
Accessing fixed memory locations
Tell me what is the need for an infinite loop in embedded systems?
What is the function of dma controlled in embedded system?
What's the difference between a web server, web farm and web garden? How would your web application need to change for each?
What is difference between using a macro and a in line function?
what are buses used for communication in embedded system?
Explain what is the difference between mutexes and semaphores?