Change priority of logmessages
Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@2105
This commit is contained in:
parent
3105209dad
commit
959b9b89d5
2 changed files with 2 additions and 3 deletions
|
@ -86,7 +86,7 @@ nextopcode:;
|
|||
SaveIP();
|
||||
continue;
|
||||
illegalopcode:
|
||||
LOG_MSG("Illegal opcode");
|
||||
LOG(LOG_CPU,LOG_NORMAL)("Illegal opcode");
|
||||
CPU_Exception(0x6,0);
|
||||
}
|
||||
FillFlags();
|
||||
|
|
|
@ -165,7 +165,7 @@ restart_opcode:
|
|||
// sprintf(writecode,"%X",mem_readb(core.cseip++));
|
||||
writecode+=2;
|
||||
}
|
||||
LOG(LOG_CPU,LOG_ERROR)("Illegal/Unhandled opcode %s",tempcode);
|
||||
LOG(LOG_CPU,LOG_NORMAL)("Illegal/Unhandled opcode %s",tempcode);
|
||||
}
|
||||
#endif
|
||||
CPU_Exception(6,0);
|
||||
|
@ -200,4 +200,3 @@ Bits CPU_Core_Simple_Trap_Run(void) {
|
|||
void CPU_Core_Simple_Init(void) {
|
||||
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue