diff options
| author | James Barnett <noreply@jamesbarnett.xyz> | 2018-07-03 21:21:56 +0100 |
|---|---|---|
| committer | James Barnett <noreply@jamesbarnett.xyz> | 2018-07-03 21:21:56 +0100 |
| commit | 9bbd85e37c3a9a16560d1364e0ea59cbeff32de3 (patch) | |
| tree | ca9d11ae9be803df168adc50e7de9e2faf96171f /src/main/kotlin/cpu/opcodes/Loads16Bit.kt | |
| parent | 1aab36e5b2e0a1033f94316618d320ba7b70ca1e (diff) | |
| download | KGB-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.kt | 1 |
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)}), |