m68040: Reduce error logging spam for some unemulated instructions

This commit is contained in:
AJR 2023-02-23 22:37:01 -05:00
parent 4cff2923ec
commit 3734eb205a
2 changed files with 4 additions and 6 deletions

View File

@ -6228,7 +6228,7 @@ f000 fe00 pmmu l . 234fc:8p
f548 ffd8 ptest l . 4:8p
if(m_has_pmmu)
{
logerror("68040: unhandled PTEST\n");
//logerror("68040: unhandled PTEST\n");
}
else
{
@ -8092,7 +8092,6 @@ f400 ff20 cinv l . 4:16
f420 ff20 cpush l . 4:16
logerror("%s at %08x: called unimplemented instruction %04x (cpush)\n",
tag(), m_ppc, m_ir);
//logerror("%s at %08x: called unimplemented instruction %04x (cpush)\n", tag(), m_ppc, m_ir);

View File

@ -25436,7 +25436,7 @@ void m68000_musashi_device::xf548_ptest_l_4()
{
if(m_has_pmmu)
{
logerror("68040: unhandled PTEST\n");
//logerror("68040: unhandled PTEST\n");
}
else
{
@ -31185,8 +31185,7 @@ void m68000_musashi_device::xf400_cinv_l_4()
}
void m68000_musashi_device::xf420_cpush_l_4()
{
logerror("%s at %08x: called unimplemented instruction %04x (cpush)\n",
tag(), m_ppc, m_ir);
//logerror("%s at %08x: called unimplemented instruction %04x (cpush)\n", tag(), m_ppc, m_ir);
}