summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author Olivier Galibert <galibert@pobox.com>2020-11-30 14:00:39 +0100
committer Olivier Galibert <galibert@pobox.com>2020-11-30 14:00:39 +0100
commitcda4ab652698f73d4d0a039304cb85724579131c (patch)
treeb1edd0e3d3f8c070a092535a6efe8632147ebad5
parent7776021e40cbe8d121e7e5055896eec934dc03d3 (diff)
h8 watchdog: remove logging no really needed anymore
-rw-r--r--src/devices/cpu/h8/h8_watchdog.cpp3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/devices/cpu/h8/h8_watchdog.cpp b/src/devices/cpu/h8/h8_watchdog.cpp
index 614afb94d2e..d3386b465fe 100644
--- a/src/devices/cpu/h8/h8_watchdog.cpp
+++ b/src/devices/cpu/h8/h8_watchdog.cpp
@@ -68,10 +68,7 @@ void h8_watchdog_device::tcnt_update(uint64_t cur_time)
uint16_t h8_watchdog_device::wd_r()
{
if (!machine().side_effects_disabled())
- {
tcnt_update();
- logerror("read\n");
- }
return (tcsr << 8) | tcnt;
}