6.97.2 Status Register (SREG) and Boolean Formula
| I | T | H | S | V | N | Z | C |
| – | – | – | – | – | – | – | – |
Example:
waitset:
sbis 0x10,0 ; Skip next instruction if bit 0 at 0x10 is set
rjmp waitset ; Bit not set
nop ; Continue (do nothing)
- Words
- 1 (2 bytes)
| Name | Cycles | ||
|---|---|---|---|
| i | ii | iii | |
| AVRe | 1 | 2 | 3 |
| AVRxm | 2 | 3 | 4 |
| AVRxt | 1 | 2 | 3 |
| AVRrc | 1 | 2 | N/A |
i) If the condition is false (no skip).
ii) If the condition is true (skip is executed) and the instruction skipped is one word.
iii) If the condition is true (skip is executed) and the instruction skipped is two words.
