excessive printf while testing changed to logerror (nw)

This commit is contained in:
Scott Stone 2016-07-03 22:48:13 -04:00
parent ea42b8bbaf
commit 81c7a63e06

View File

@ -139,13 +139,13 @@ const device_type AHA1542 = &device_creator<aha1542_device>;
READ8_MEMBER( aha1542_device::aha1542_r )
{
printf("%s aha1542_r(): offset=%d\n", machine().describe_context(), offset);
logerror("%s aha1542_r(): offset=%d\n", machine().describe_context(), offset);
return 0xff;
}
WRITE8_MEMBER( aha1542_device::aha1542_w )
{
printf("%s aha1542_w(): offset=%d data=0x%02x\n", machine().describe_context(), offset, data);
logerror("%s aha1542_w(): offset=%d data=0x%02x\n", machine().describe_context(), offset, data);
}
//-------------------------------------------------