1
0
Fork 0

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:
Peter Veenstra 2004-12-28 16:11:54 +00:00
parent 3fd1789b95
commit 36cc519170
2 changed files with 3 additions and 3 deletions

View file

@ -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);

View file

@ -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);
}