diff options
author | Araq <rumpf_a@web.de> | 2013-03-19 08:43:45 +0100 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2013-03-19 08:43:45 +0100 |
commit | b7d19017477445b545f9be0e7038985106784787 (patch) | |
tree | 1e553c48722a74b1d3d598071669b904de8c6675 /tests | |
parent | 09fc94c4c2f79ef73c9ee6bee28bbc8f8880106f (diff) | |
download | Nim-b7d19017477445b545f9be0e7038985106784787.tar.gz |
better error message when C compilation fails
Diffstat (limited to 'tests')
-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 |