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
what is the difference between embedded systems and the system in which rtos is running?
What is the repository pattern?
Given time, cost, client satisfaction and best practices, how will you prioritize them for a project you are working on? Explain why.
Show me a portfolio of all the applications you worked on, and tell me how you contributed to design them.
Tell me what are the functional requirements that are used in the embedded systems?
What is the difference between "set" logic, and "procedural" logic. When would you use each one and why?
Tell me what is difference between binary semaphore and mutex?
Tell me what is a watchdog timer?
Explain the concept of separation of concerns?
What's the difference between locking and lockless (optimistic and pessimistic) concurrency models?
Explain what is a watchdog timer?
Tell me why embedded system is useful?
what is the command/instruction in ARM that does not do anything or does not execute any instruction ? (except NOP instruction)
What is risc architecture?
Is count down_to_zero loop better than count_up_loops?