[disasm] output missmatched opcode
authorMartin Perner <martin@perner.cc>
Fri, 17 Dec 2010 23:48:23 +0000 (00:48 +0100)
committerMartin Perner <martin@perner.cc>
Fri, 17 Dec 2010 23:48:23 +0000 (00:48 +0100)
3c_disasm/disasm.cpp

index c117bb047730a625063677756586cef00999d3d8..0cb75facc2420342e0d02e9f8d197aceb7da389f 100644 (file)
@@ -57,7 +57,7 @@ Iinstr* disasm::decodeOpcode(short opcode)
        }
        else {
                stringstream err;
-               err << "opcode not found" << endl;
+               err << "opcode not found. in was " << opcode  << endl;
                throw err.str();
        }
 }