| Hex | Mnemonic | Cycles |
|---|---|---|
| CE AE | HALT | 2 |
See description.
Halt the CPU until an interrupt is requested.
Using this instruction will reduce energy consumption.
NOTE: If no interrupts are enabled, the system will be unable to resume operation. Never call HALT in a middle of an interrupt. Code will resume after HALT when the requested interrupt is completed.
None
; Make sure interrupts are enabled and configured correctly.
HALT
; Operation will resume once the interrupt finish.