summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine/upd765.cpp
diff options
context:
space:
mode:
author AJR <ajrhacker@users.noreply.github.com>2019-04-17 19:47:17 -0400
committer AJR <ajrhacker@users.noreply.github.com>2019-04-17 19:47:17 -0400
commit2ecfd840e8476f80b72f046753427cf46601cd8d (patch)
treed4dbf6ce080f2abe88a2b86b884c57efa260e4e0 /src/devices/machine/upd765.cpp
parente812e77567e81a2eab033840c7d88eb6911fc3a8 (diff)
wd37c65c: Allow second clock to be configured (not used yet) (nw)
Diffstat (limited to 'src/devices/machine/upd765.cpp')
-rw-r--r--src/devices/machine/upd765.cpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/devices/machine/upd765.cpp b/src/devices/machine/upd765.cpp
index 9de742a39d9..3d763187bd8 100644
--- a/src/devices/machine/upd765.cpp
+++ b/src/devices/machine/upd765.cpp
@@ -2966,12 +2966,16 @@ pc8477a_device::pc8477a_device(const machine_config &mconfig, const char *tag, d
select_multiplexed = false;
}
-wd37c65c_device::wd37c65c_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock) : upd765_family_device(mconfig, WD37C65C, tag, owner, clock)
+wd37c65c_device::wd37c65c_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock) :
+ upd765_family_device(mconfig, WD37C65C, tag, owner, clock),
+ m_clock2(0)
{
ready_polled = true;
ready_connected = false;
select_connected = true;
select_multiplexed = false;
+
+ (void)m_clock2; // TODO
}
mcs3201_device::mcs3201_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock) :