aboutsummaryrefslogtreecommitdiff
path: root/src/main/kotlin/cpu/Cpu.kt
diff options
context:
space:
mode:
authorJames Barnett <noreply@jamesbarnett.xyz>2018-07-16 20:42:52 +0100
committerJames Barnett <noreply@jamesbarnett.xyz>2018-07-16 20:42:52 +0100
commit244cf2663133abb2fb861bce0474344999652f67 (patch)
tree205ba52c275a435fb57e73b79659b8bf95e2f10b /src/main/kotlin/cpu/Cpu.kt
parent8b015d9168e3de1ef63982892401081103cfb7b7 (diff)
downloadKGB-244cf2663133abb2fb861bce0474344999652f67.tar.xz
KGB-244cf2663133abb2fb861bce0474344999652f67.zip
Implement BIT SET and RES ops
Diffstat (limited to 'src/main/kotlin/cpu/Cpu.kt')
-rw-r--r--src/main/kotlin/cpu/Cpu.kt2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/kotlin/cpu/Cpu.kt b/src/main/kotlin/cpu/Cpu.kt
index ab8a96c..feb89bc 100644
--- a/src/main/kotlin/cpu/Cpu.kt
+++ b/src/main/kotlin/cpu/Cpu.kt
@@ -24,9 +24,9 @@ class Cpu {
extCommandGroup.putAll(miscExtended)
extCommandGroup.putAll(rotatesExtended)
extCommandGroup.putAll(shiftsExtended)
+ extCommandGroup.putAll(generateExtendedBitOps())
extendedOpcodes = extCommandGroup.toMap()
-
}
} \ No newline at end of file