Changed priority of some messages (Requested by Mirek)
Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@2093
This commit is contained in:
parent
3fd1789b95
commit
36cc519170
2 changed files with 3 additions and 3 deletions
|
@ -171,7 +171,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);
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||||
*/
|
||||
|
||||
/* $Id: cpu.cpp,v 1.61 2004-08-23 12:17:29 harekiet Exp $ */
|
||||
/* $Id: cpu.cpp,v 1.62 2004-12-28 16:11:54 qbix79 Exp $ */
|
||||
|
||||
#include <assert.h>
|
||||
#include "dosbox.h"
|
||||
|
@ -320,7 +320,7 @@ bool CPU_IO_Exception(Bitu port,Bitu size) {
|
|||
}
|
||||
return false;
|
||||
doexception:
|
||||
LOG_MSG("Exception");
|
||||
LOG(LOG_CPU,LOG_NORMAL)("IO Exception port %X",port);
|
||||
return CPU_PrepareException(13,0);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue