From 244cf2663133abb2fb861bce0474344999652f67 Mon Sep 17 00:00:00 2001 From: James Barnett Date: Mon, 16 Jul 2018 20:42:52 +0100 Subject: Implement BIT SET and RES ops --- src/main/kotlin/cpu/Cpu.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/main/kotlin/cpu/Cpu.kt') 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 -- cgit v1.2.3