summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus
diff options
context:
space:
mode:
author Dirk Best <mail@dirk-best.de>2020-07-20 13:12:49 +0200
committer Dirk Best <mail@dirk-best.de>2020-07-20 13:17:58 +0200
commit9e7f81e89dbd850c596b36e111c03e5b3cf1ab13 (patch)
treecc3050da419e8d18f1814f4dd2cb7a10be5be2ad /src/devices/bus
parent150569d13595cb360fd395e79e722846abc1f704 (diff)
samcoupe/dallas: Init m_print variable
Diffstat (limited to 'src/devices/bus')
-rw-r--r--src/devices/bus/samcoupe/expansion/dallas.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/devices/bus/samcoupe/expansion/dallas.cpp b/src/devices/bus/samcoupe/expansion/dallas.cpp
index e7c57fb66cc..30e7a1d0005 100644
--- a/src/devices/bus/samcoupe/expansion/dallas.cpp
+++ b/src/devices/bus/samcoupe/expansion/dallas.cpp
@@ -38,7 +38,8 @@ void sam_dallas_clock_device::device_add_mconfig(machine_config &config)
sam_dallas_clock_device::sam_dallas_clock_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock) :
device_t(mconfig, SAM_DALLAS_CLOCK, tag, owner, clock),
device_samcoupe_expansion_interface(mconfig, *this),
- m_rtc(*this, "rtc")
+ m_rtc(*this, "rtc"),
+ m_print(0)
{
}