summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine/timekpr.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/machine/timekpr.cpp')
-rw-r--r--src/devices/machine/timekpr.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/devices/machine/timekpr.cpp b/src/devices/machine/timekpr.cpp
index e2517e59766..f5c3a8bbc10 100644
--- a/src/devices/machine/timekpr.cpp
+++ b/src/devices/machine/timekpr.cpp
@@ -18,7 +18,6 @@
#include "machine/timekpr.h"
#include "machine/timehelp.h"
-#define LOG_GENERAL (1U << 0)
#define LOG_TICKS (1U << 1)
#define VERBOSE (0)
@@ -380,7 +379,7 @@ void timekeeper_device::watchdog_write(u8 data)
void timekeeper_device::write(offs_t offset, u8 data)
{
- LOGMASKED(LOG_GENERAL, "timekeeper_device::write: %04x = %02x\n", offset, data);
+ LOG("timekeeper_device::write: %04x = %02x\n", offset, data);
if (offset == m_offset_control)
{
if ((m_control & CONTROL_W) != 0 &&
@@ -440,7 +439,7 @@ u8 timekeeper_device::read(offs_t offset)
m_reset_cb(CLEAR_LINE);
m_irq_cb(CLEAR_LINE);
}
- LOGMASKED(LOG_GENERAL, "timekeeper_device::read: %04x (%02x)\n", offset, result);
+ LOG("timekeeper_device::read: %04x (%02x)\n", offset, result);
return result;
}