aboutsummaryrefslogtreecommitdiff
path: root/src/main/kotlin/cpu/opcodes/Loads16Bit.kt
diff options
context:
space:
mode:
authorJames Barnett <noreply@jamesbarnett.xyz>2018-07-03 21:21:56 +0100
committerJames Barnett <noreply@jamesbarnett.xyz>2018-07-03 21:21:56 +0100
commit9bbd85e37c3a9a16560d1364e0ea59cbeff32de3 (patch)
treeca9d11ae9be803df168adc50e7de9e2faf96171f /src/main/kotlin/cpu/opcodes/Loads16Bit.kt
parent1aab36e5b2e0a1033f94316618d320ba7b70ca1e (diff)
downloadKGB-9bbd85e37c3a9a16560d1364e0ea59cbeff32de3.tar.xz
KGB-9bbd85e37c3a9a16560d1364e0ea59cbeff32de3.zip
Add some 8-Bit arithmetic ops
Diffstat (limited to 'src/main/kotlin/cpu/opcodes/Loads16Bit.kt')
-rw-r--r--src/main/kotlin/cpu/opcodes/Loads16Bit.kt1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/main/kotlin/cpu/opcodes/Loads16Bit.kt b/src/main/kotlin/cpu/opcodes/Loads16Bit.kt
index 830f6ab..3db4f7d 100644
--- a/src/main/kotlin/cpu/opcodes/Loads16Bit.kt
+++ b/src/main/kotlin/cpu/opcodes/Loads16Bit.kt
@@ -6,7 +6,6 @@ import cpu.Registers.Flag
import ram.Ram
import BitManipulation as bm
-// 8-Bit Loads
var loads16Bit = mapOf(
0x01 to Operation("LD BC,nn", 2, 12, {r, _, a -> r.BC = bm.argsToWord(a)}),