summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/nubus/pds30_mc30.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/nubus/pds30_mc30.cpp')
-rw-r--r--src/devices/bus/nubus/pds30_mc30.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/devices/bus/nubus/pds30_mc30.cpp b/src/devices/bus/nubus/pds30_mc30.cpp
index 5c6fa193bf6..592474b3c94 100644
--- a/src/devices/bus/nubus/pds30_mc30.cpp
+++ b/src/devices/bus/nubus/pds30_mc30.cpp
@@ -264,18 +264,18 @@ WRITE32_MEMBER( nubus_xceedmc30_device::xceedmc30_w )
break;
case 0x100000:
-// logerror("%08x to DAC control %s\n", data, machine().describe_context());
+// logerror("%s %08x to DAC control\n", machine().describe_context(), data);
m_clutoffs = (data&0xff);
m_count = 0;
break;
case 0x100001:
-// printf("%08x to DAC data %s\n", data, machine().describe_context());
+// printf("%s %08x to DAC data\n", machine().describe_context().c_str(), data);
m_colors[m_count++] = ((data>>24) & 0xff);
if (m_count == 3)
{
-// printf("RAMDAC: color %02x = %02x %02x %02x %s\n", m_clutoffs, m_colors[0], m_colors[1], m_colors[2], machine().describe_context());
+// printf("%s RAMDAC: color %02x = %02x %02x %02x\n", machine().describe_context().c_str(), m_clutoffs, m_colors[0], m_colors[1], m_colors[2]);
m_palette[m_clutoffs] = rgb_t(m_colors[0], m_colors[1], m_colors[2]);
m_clutoffs++;
if (m_clutoffs > 255)
@@ -299,7 +299,7 @@ WRITE32_MEMBER( nubus_xceedmc30_device::xceedmc30_w )
break;
default:
-// printf("xceedmc30_w: %08x @ %x, mask %08x %s\n", data, offset, mem_mask, machine().describe_context());
+// printf("%s xceedmc30_w: %08x @ %x, mask %08x\n", machine().describe_context().c_str(), data, offset, mem_mask);
break;
}
}