diff options
Diffstat (limited to 'tests/manyloc/gbemulator/cpu.nim')
-rw-r--r-- | tests/manyloc/gbemulator/cpu.nim | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/manyloc/gbemulator/cpu.nim b/tests/manyloc/gbemulator/cpu.nim index da615065a..a8346b9ae 100644 --- a/tests/manyloc/gbemulator/cpu.nim +++ b/tests/manyloc/gbemulator/cpu.nim @@ -132,6 +132,7 @@ proc exec(cpu: PCPU) = let opcode = cpu.mem.readByte(cpu.r.pc) #echo("OPCODE: 0x", toHex(opcode, 2)) cpu.r.pc.inc() + # PROBLEM: 0x7B is part of some range later but the compiler does not care! case opcode of 0x06: # LD B, n |