diff options
Diffstat (limited to 'src/main/kotlin/cpu/Cpu.kt')
| -rw-r--r-- | src/main/kotlin/cpu/Cpu.kt | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/main/kotlin/cpu/Cpu.kt b/src/main/kotlin/cpu/Cpu.kt index fdc75b0..ab8a96c 100644 --- a/src/main/kotlin/cpu/Cpu.kt +++ b/src/main/kotlin/cpu/Cpu.kt @@ -23,6 +23,7 @@ class Cpu { val extCommandGroup: MutableMap<Int, Operation> = mutableMapOf() extCommandGroup.putAll(miscExtended) extCommandGroup.putAll(rotatesExtended) + extCommandGroup.putAll(shiftsExtended) extendedOpcodes = extCommandGroup.toMap() |