Design a circuit to detect when 3 and only 3 bits are set
out of 8 bits.(eg. o0101100)
Answers were Sorted based on User's Feedback
Answer / gautam
Sorry thr was a bit mistake. Corrected :
MOV XAR1, #Data
MOV XAR0, #0
MOV XAR2, #0
Loop:
TBIT *XAR1, *XAR2
BF Loop1, NTC
INR *XAR0
Loop1:
INR *XAR2
MOV AL, *XAR0
CMP AL, #0x03
BF Loop3, EQ
MOV AL, *XAR2
CMP AL, #0x80
BF Loop, NEQ
Loop3:
EXIT
| Is This Answer Correct ? | 0 Yes | 3 No |
Answer / gautam
I have modified it a bit,
MOVL XAR1, #Data
MOVL XAR0, #0x00
MOVL XAR2, #0x00
Loop:
TBIT *XAR1,#XAR2
BF Loop1, NTC
INR AR0
Loop1:
INR AR2
MOV AL, *XAR0
CMP AL, @0x03
BF Action, EQ
MOV AL, *XAR2
CMP AL, @0x08
BF Loop, NEQ
Loop3:
EXIT
Action:
| Is This Answer Correct ? | 0 Yes | 5 No |
Mention how I/O devices are classified for embedded system?
Tell me what are the different types of buses used by the embedded systems?
Advantages and disadvantages of using macro and inline functions?
Give an example of troubleshooting on embedded targets. Explain the process step-by-step.
What is difference between binary semaphore and mutex?
Can we use printf inside isr?
What are the most common errors you've found in embedded systems and how have you resolved them?
Explain what is the need for an infinite loop in embedded systems?
Tell me can we put breakpoint inside isr?
Can you please explain the difference between mutexes vs semaphores?
What is the purpose of a watchdog timer?
Tell me whether we can use semaphore or mutex or spinlock in interrupt context in linux kernel?