From 81c7a63e0631d18eaee7dac144b8acb583daf1b9 Mon Sep 17 00:00:00 2001 From: Scott Stone Date: Sun, 3 Jul 2016 22:48:13 -0400 Subject: [PATCH] excessive printf while testing changed to logerror (nw) --- src/devices/bus/isa/aha1542.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/devices/bus/isa/aha1542.cpp b/src/devices/bus/isa/aha1542.cpp index b3394f1e25c..96f28120224 100644 --- a/src/devices/bus/isa/aha1542.cpp +++ b/src/devices/bus/isa/aha1542.cpp @@ -139,13 +139,13 @@ const device_type AHA1542 = &device_creator; 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); } //-------------------------------------------------