Complete the code to enable interrupts in ARM architecture.
CPSIE [1]The CPSIE I instruction enables IRQ interrupts by clearing the I bit in the CPSR register.
Complete the code to disable fast interrupts (FIQ) in ARM architecture.
CPSID [1]The CPSID F instruction disables FIQ interrupts by setting the F bit in the CPSR register.
Fix the error in the code to enable both IRQ and FIQ interrupts.
CPSIE [1]The CPSIE IF instruction enables both IRQ and FIQ interrupts by clearing the I and F bits in the CPSR register.
Fill both blanks to disable IRQ and FIQ interrupts respectively.
CPSID [1] CPSID [2]
Use CPSID I to disable IRQ and CPSID F to disable FIQ interrupts.
Fill all three blanks to enable IRQ interrupts, disable FIQ interrupts, and enable asynchronous aborts respectively.
CPSIE [1] CPSID [2] CPSIE [3]
CPSIE I enables IRQ interrupts by clearing the I bit, CPSID F disables FIQ interrupts by setting the F bit, and CPSIE A enables asynchronous aborts by clearing the A bit in the CPSR register.