Bird
0
0

Which of the following is the correct syntax to enable a low-power mode in ARM assembly?

easy📝 Factual Q3 of 15
ARM Architecture - Power Modes
Which of the following is the correct syntax to enable a low-power mode in ARM assembly?
AADD R1, R2, R3
BMOV R0, #1
CWFI ; Wait For Interrupt
DLDR R0, [R1]
Step-by-Step Solution
Solution:
  1. Step 1: Recognize low-power mode instructions

    WFI (Wait For Interrupt) is used to enter low-power sleep mode.
  2. Step 2: Check other instructions

    MOV, ADD, and LDR are general instructions not related to power modes.
  3. Final Answer:

    WFI ; Wait For Interrupt -> Option C
  4. Quick Check:

    Low-power instruction = WFI [OK]
Quick Trick: WFI puts CPU to sleep until an interrupt occurs [OK]
Common Mistakes:
  • Choosing general instructions instead of power mode commands
  • Confusing MOV or ADD with power control
  • Not recognizing WFI as a low-power instruction

Want More Practice?

15+ quiz questions · All difficulty levels · Free

Free Signup - Practice All Questions
More ARM Architecture Quizzes