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 feb89bc..ce5ba43 100644 --- a/src/main/kotlin/cpu/Cpu.kt +++ b/src/main/kotlin/cpu/Cpu.kt @@ -18,6 +18,7 @@ class Cpu { stdCommandGroup.putAll(arithmetic16Bit) stdCommandGroup.putAll(misc) stdCommandGroup.putAll(rotates) + stdCommandGroup.putAll(jumps) standardOpcodes = stdCommandGroup.toMap() val extCommandGroup: MutableMap<Int, Operation> = mutableMapOf() |