summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine/sdlc.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/machine/sdlc.cpp')
-rw-r--r--src/devices/machine/sdlc.cpp11
1 files changed, 9 insertions, 2 deletions
diff --git a/src/devices/machine/sdlc.cpp b/src/devices/machine/sdlc.cpp
index 7a7303b9e73..b664126213f 100644
--- a/src/devices/machine/sdlc.cpp
+++ b/src/devices/machine/sdlc.cpp
@@ -7,7 +7,6 @@
#include <sstream>
-#define LOG_GENERAL (1U << 0)
#define LOG_RXBIT (1U << 1)
#define LOG_RXFLAG (1U << 2)
#define LOG_LINESTATE (1U << 3)
@@ -38,6 +37,10 @@ device_sdlc_consumer_interface::device_sdlc_consumer_interface(machine_config co
{
}
+device_sdlc_consumer_interface::~device_sdlc_consumer_interface()
+{
+}
+
void device_sdlc_consumer_interface::interface_post_start()
{
device().save_item(NAME(m_line_active));
@@ -140,7 +143,11 @@ sdlc_logger_device::sdlc_logger_device(machine_config const &mconfig, char const
{
}
-WRITE_LINE_MEMBER(sdlc_logger_device::clock_w)
+sdlc_logger_device::~sdlc_logger_device()
+{
+}
+
+void sdlc_logger_device::clock_w(int state)
{
if (bool(state) != bool(m_current_clock))
{