1
0
Fork 0

Change logging message to always display things in twofault.

Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@3211
This commit is contained in:
Peter Veenstra 2008-08-27 16:21:30 +00:00
parent 3fc520528d
commit cbdb5b97fe

View file

@ -169,7 +169,7 @@ restart_opcode:
if (len>16) len=16;
char tempcode[16*2+1];char * writecode=tempcode;
for (;len>0;len--) {
sprintf(writecode,"%X",mem_readb(core.cseip++));
sprintf(writecode,"%02X",mem_readb(core.cseip++));
writecode+=2;
}
LOG(LOG_CPU,LOG_NORMAL)("Illegal/Unhandled opcode %s",tempcode);