{| class="wikitable" style="white-space: nowrap;"
! notation !! Meaning !! respective Opcode Bitsbits
|-
| A || 16-bit address or immediate || alalalal ahahahah
|-
| B b || Bit bit number (0..7) || bbb = 000..111
|-
| C || Condition (nz, z, nc, c, po, pe, p, m)
* (()) = I/O port
* [] = operator precedence (to avoid confusion with indirection)
* E.B b = the Bth bth bit of the value of expression E
* * = any bit value (0 or 1)
* wz = an internal 16-bit register connected to 16-bit operations
|}
=== rOT ROT group ===
{| class="wikitable" style="white-space: nowrap;"
! Instruction !! Opcode !! nOPs !! Cycles !! S !! Z !! 5 !! H !! 3 !! P !! n !! C !! Effect !! Description
|-
| bit Bb,r || 11001011 01bbbrrr || 2 || 8 (4,4) || + || + || + || 1 || + || P || 0 || - || tmp := r AnD [1 << Bb] ||rowspan=3|Test Bitbit
|-
| bit Bb,(hl) || 11001011 01bbb110 || 3 || 12 (4,4,4) || + || + || X || 1 || X || P || 0 || - || tmp := (hl) AnD [1 << Bb],
f5 := wz.13, f3 := wz.11
|-
| bit Bb,(ixy+d) || 11i11101 11001011 dddddddd 01bbb*** || 6 || 20 (4,4,3,5,4) || + || + || X || 1 || X || P || 0 || - || tmp := (ixy+d) AnD [1 << Bb],
f5 := [ixy+d].13, f3 := [ixy+d].11
|-
| res Bb,r || 11001011 10bbbrrr || 2 || 8 (4,4) || - || - || - || - || - || - || - || - || r := r AnD ~[1 << Bb] ||rowspan=4|reset Bitbit
|-
| res Bb,(hl) || 11001011 10bbb110 || 4 || 15 (4,4,4,3) || - || - || - || - || - || - || - || - || (hl) := (hl) AnD ~[1 << Bb]
|-
| res Bb,(ixy+d) || 11i11101 11001011 dddddddd 10bbb110 || 7 || 23 (4,4,3,5,4,3) || - || - || - || - || - || - || - || - || (ixy+d) := (ixy+d) AnD ~[1 << Bb]
|-
| res Bb,(ixy+d)->r || 11i11101 11001011 dddddddd 10bbbrrr || 7 || 23 (4,4,3,5,4,3) || - || - || - || - || - || - || - || - || (ixy+d) := r := (ixy+d) AnD ~[1 << Bb]
|-
| set Bb,r || 11001011 11bbbrrr || 2 || 8 (4,4) || - || - || - || - || - || - || - || - || r := r Or [1 << Bb] ||rowspan=4|Set Bitbit
|-
| set Bb,(hl) || 11001011 11bbb110 || 4 || 15 (4,4,4,3) || - || - || - || - || - || - || - || - || (hl) := (hl) Or [1 << Bb]
|-
| set Bb,(ixy+d) || 11i11101 11001011 dddddddd 11bbb110 || 7 || 23 (4,4,3,5,4,3) || - || - || - || - || - || - || - || - || (ixy+d) := (ixy+d) Or [1 << Bb]
|-
| set Bb,(ixy+d)->r || 11i11101 11001011 dddddddd 11bbbrrr || 7 || 23 (4,4,3,5,4,3) || - || - || - || - || - || - || - || - || (ixy+d) := r := (ixy+d) Or [1 << Bb]
|-
| cpl || 00101111 || 1 || 4 (4) || - || - || + || 1 || + || - || 1 || - || a := ~a || Complement