| set B,(I+D)->R || 11i11101 11001011 dddddddd 11bbbrrr || 7 || 23 || - || - || - || - || - || - || - || - || (I+D) := R := (I+D) OR [1 << B]
|-
| sla R || 11001011 00100rrr || 2 || 8 || + || + || + || 0 || + || P || 0 || X || cf := R.7, R := R << 1 ||rowspan=4|Shift Left Arithmetic
|-
| sla (hl) || 11001011 00100110 || 4 || 15 || + || + || + || 0 || + || P || 0 || X || cf := (hl).7, (hl) := (hl) << 1
|-
| sla (I+D) || 11i11101 11001011 dddddddd 00100110 || 7 || 23 || + || + || + || 0 || + || P || 0 || X || cf := (I+D).7, (I+D) := (I+D) << 1
|-
| sla (I+D)->R || 11i11101 11001011 dddddddd 00100rrr || 7 || 23 || + || + || + || 0 || + || P || 0 || X || cf := (I+D).7, (I+D) := R := (I+D) << 1
|-
| sra R || 11001011 00101rrr || 2 || 8 || + || + || + || 0 || + || P || 0 || X || cf := R.0, R := R >> 1, R.7 := R.6 ||rowspan=4|Shift Right Arithmetic
|-
| sra (hl) || 11001011 00101110 || 4 || 15 || + || + || + || 0 || + || P || 0 || X || cf := (hl).0, (hl) := (hl) >> 1, (hl).7 := (hl).6
|-
| sra (I+D) || 11i11101 11001011 dddddddd 00101110 || 7 || 23 || + || + || + || 0 || + || P || 0 || X || cf := (I+D).0, (I+D) := (I+D) >> 1, (I+D).7 := (I+D).6
|-
| sra (I+D)->R || 11i11101 11001011 dddddddd 00101rrr || 7 || 23 || + || + || + || 0 || + || P || 0 || X || cf := (I+D).0, tmp := (I+D) >> 1, tmp.7 := tmp.6, (I+D) := R := tmp
|-
| sll R || 11001011 00110rrr || 2 || 8 || + || + || + || 0 || + || P || 0 || X || cf := R.7, R := [R << 1] + 1 ||rowspan=4|Shift Left Logical
|-
| sll (hl) || 11001011 00110110 || 4 || 15 || + || + || + || 0 || + || P || 0 || X || cf := (hl).7, (hl) := [(hl) << 1] + 1
|-
| sll (I+D) || 11i11101 11001011 dddddddd 00110110 || 7 || 23 || + || + || + || 0 || + || P || 0 || X || cf := (I+D).7, (I+D) := [(I+D) << 1] + 1
|-
| sll (I+D)->R || 11i11101 11001011 dddddddd 00110rrr || 7 || 23 || + || + || + || 0 || + || P || 0 || X || cf := (I+D).7, (I+D) := R := [(I+D) << 1] + 1
|-
| srl R || 11001011 00111rrr || 2 || 8 || 0 || + || + || 0 || + || P || 0 || X || cf := R.0, R := R >> 1 ||rowspan=4|Shift Right Logical
|-
| srl (hl) || 11001011 00111110 || 4 || 15 || 0 || + || + || 0 || + || P || 0 || X || cf := (hl).0, (hl) := (hl) >> 1
|-
| srl (I+D) || 11i11101 11001011 dddddddd 00111110 || 7 || 23 || 0 || + || + || 0 || + || P || 0 || X || cf := (I+D).0, (I+D) := (I+D) >> 1
|-
| srl (I+D)->R || 11i11101 11001011 dddddddd 00111rrr || 7 || 23 || 0 || + || + || 0 || + || P || 0 || X || cf := (I+D).0, (I+D) := R := (I+D) >> 1
|-
| sub R || 10010rrr || 1 || 4 || + || + || + || + || + || V || 1 || + || a -= R ||rowspan=5|Subtract