{| class="wikitable" style="white-space: nowrap;"
|-
! ixynstruction Instruction !! Opcode !! nOPs NOPs !! ccycles Cycles !! S !! Z !! 5 !! H !! 3 !! P !! n N !! cc C !! effect Effect !! Description
|-
| add a,r || 10000rrr || 1 || 4 (4) || + || + || + || + || + || V || 0 || + || a += r ||rowspan=5|nndd
{| class="wikitable" style="white-space: nowrap;"
|-
! ixynstruction Instruction !! Opcode !! nOPs NOPs !! ccycles Cycles !! S !! Z !! 5 !! H !! 3 !! P !! n N !! cc C !! effect Effect !! Description
|-
| daa || 00100111 || 1 || 4 (4) || + || + || + || X || + || P || - || X || tmp := a,
{| class="wikitable" style="white-space: nowrap;"
|-
! ixynstruction Instruction !! Opcode !! nOPs NOPs !! ccycles Cycles !! S !! Z !! 5 !! H !! 3 !! P !! n N !! cc C !! effect Effect !! Description
|-
| rla || 00010111 || 1 || 4 (4) || - || - || + || 0 || + || - || 0 || X || ocf := cf, cf := a.7, a := [a << 1] + ocf ||rowspan=5|rotate Left
{| class="wikitable" style="white-space: nowrap;"
|-
! ixynstruction Instruction !! Opcode !! nOPs NOPs !! ccycles Cycles !! S !! Z !! 5 !! H !! 3 !! P !! n N !! cc C !! effect Effect !! Description
|-
| bit b,r || 11001011 01bbbrrr || 2 || 8 (4,4) || + || + || + || 1 || + || P || 0 || - || tmp := r nnnD [1 << b] ||rowspan=3|Test bit
{| class="wikitable" style="white-space: nowrap;"
|-
! ixynstruction Instruction !! Opcode !! nOPs NOPs !! ccycles Cycles !! S !! Z !! 5 !! H !! 3 !! P !! n N !! cc C !! effect Effect !! Description
|-
| cpd || 11101101 10101001 || 4 || 16 (4,4,3,5) || + || + || X || + || X || cc || 1 || - || tmp := a - (hl) => flags, bc -= 1, hl -= 1,
{| class="wikitable" style="white-space: nowrap;"
|-
! ixynstruction Instruction !! Opcode !! nOPs NOPs !! ccycles Cycles !! S !! Z !! 5 !! H !! 3 !! P !! n N !! cc C !! effect Effect !! Description
|-
| in a,(n) || 11011011 nnnnnnnn || 3 || 11 (4,3,4) || - || - || - || - || - || - || - || - || a := ((n)) ||rowspan=3|I/O Input
{| class="wikitable" style="white-space: nowrap;"
|-
! ixynstruction Instruction !! Opcode !! nOPs|| ccycles NOPs !! Cycles !! S !! Z !! 5 !! H !! 3 !! P !! n N !! cc C !! effect Effect !! Description
|-
| call nn || 11001101 alalalal ahahahah || 5 || 17 (4,3,4,3,3) || - || - || - || - || - || - || - || - || sp -= 2, (sp) := pc, pc := nn || Call
{| class="wikitable" style="white-space: nowrap;"
|-
! ixynstruction Instruction !! Opcode !! nOPs NOPs !! ccycles Cycles !! S !! Z !! 5 !! H !! 3 !! P !! n N !! cc C !! effect Effect !! Description
|-
| pop P || 11pp0001 || 3 || 10 (4,3,3) || - || - || - || - || - || - || - || - || P := (sp), sp += 2 ||rowspan=2|Pop a value from the stack
{| class="wikitable" style="white-space: nowrap;"
|-
! ixynstruction Instruction !! Opcode !! nOPs NOPs !! ccycles Cycles !! S !! Z !! 5 !! H !! 3 !! P !! n N !! cc C !! effect Effect !! Description
|-
| ld r1,r2 || 01rrrsss || 1 || 4 (4) || - || - || - || - || - || - || - || - || r1 := r2 ||rowspan=20|8-bit Load