summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine/68230pit.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/machine/68230pit.cpp')
-rw-r--r--src/devices/machine/68230pit.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/machine/68230pit.cpp b/src/devices/machine/68230pit.cpp
index f704a4ddd9a..5a17c848685 100644
--- a/src/devices/machine/68230pit.cpp
+++ b/src/devices/machine/68230pit.cpp
@@ -765,7 +765,7 @@ WRITE8_MEMBER (pit68230_device::write)
if (ow_cnt > 1)
{
logerror ("\npit68230_device::write: previous identical operation performed %02x times\n", ow_cnt);
- logerror ("pit68230_device::write: offset=%02x data=%02x %lld\n", offset, data, machine ().firstcpu->total_cycles ());
+ logerror ("pit68230_device::write: offset=%02x data=%02x %s\n", offset, data, machine().describe_context());
}
ow_cnt = 0;
ow_data = data;
@@ -1015,7 +1015,7 @@ READ8_MEMBER (pit68230_device::read){
if (or_cnt > 1)
{
logerror ("\npit68230_device::read: previous identical operation performed %02x times\n", or_cnt);
- logerror (" - pit68230_device::read: offset=%02x data=%02x %lld\n", offset, data, machine ().firstcpu->total_cycles ());
+ logerror (" - pit68230_device::read: offset=%02x data=%02x %s\n", offset, data, machine().describe_context());
}
or_cnt = 0;
or_data = data;