diff options
| author | James Barnett <noreply@jamesbarnett.xyz> | 2018-07-16 20:42:52 +0100 |
|---|---|---|
| committer | James Barnett <noreply@jamesbarnett.xyz> | 2018-07-16 20:42:52 +0100 |
| commit | 244cf2663133abb2fb861bce0474344999652f67 (patch) | |
| tree | 205ba52c275a435fb57e73b79659b8bf95e2f10b /src/main/kotlin/cpu/Cpu.kt | |
| parent | 8b015d9168e3de1ef63982892401081103cfb7b7 (diff) | |
| download | KGB-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.kt | 2 |
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 |