From ae3bb9819aad653d6a2ed972000e3c3696e39bf1 Mon Sep 17 00:00:00 2001 From: James Barnett Date: Mon, 16 Jul 2018 21:27:33 +0100 Subject: Implement JUMP ops --- src/main/kotlin/cpu/Cpu.kt | 1 + 1 file changed, 1 insertion(+) (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 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 = mutableMapOf() -- cgit v1.2.3