mirror of
https://github.com/holub/mame
synced 2025-06-07 05:13:46 +03:00
Temp fix to regain speed in edrandy and clones (and quite possibly more) by commenting select logerrors that are spammed unmerciful causing extreme performance degradation (nw)
This commit is contained in:
parent
c422fcef6e
commit
1db114abc9
@ -1179,12 +1179,12 @@ void deco_146_base_device::write_data(address_space &space, UINT16 address, UINT
|
||||
|
||||
if (i==0) // the first cs is our internal protection area
|
||||
{
|
||||
logerror("write matches cs table (protection) %01x %04x %04x %04x\n", i, real_address, data, mem_mask);
|
||||
// logerror("write matches cs table (protection) %01x %04x %04x %04x\n", i, real_address, data, mem_mask);
|
||||
write_protport(space, real_address, data, mem_mask);
|
||||
}
|
||||
else
|
||||
{
|
||||
logerror("write matches cs table (external connection) %01x %04x %04x %04x\n", i, real_address, data, mem_mask);
|
||||
// logerror("write matches cs table (external connection) %01x %04x %04x %04x\n", i, real_address, data, mem_mask);
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -1249,7 +1249,7 @@ void deco_146_base_device::write_protport(address_space &space, UINT16 address,
|
||||
}
|
||||
else if ((address&0xff) == m_mask_port)
|
||||
{
|
||||
logerror("LOAD NAND REGISTER %04x %04x\n", data, mem_mask);
|
||||
// logerror("LOAD NAND REGISTER %04x %04x\n", data, mem_mask);
|
||||
COMBINE_DATA(&m_nand);
|
||||
}
|
||||
else if ((address&0xff) == m_soundlatch_port)
|
||||
|
Loading…
Reference in New Issue
Block a user