summaryrefslogtreecommitdiffstats
path: root/src/devices/imagedev/bitbngr.cpp
diff options
context:
space:
mode:
author Vas Crabb <vas@vastheman.com>2017-02-11 23:04:57 +1100
committer Vas Crabb <vas@vastheman.com>2017-02-11 23:04:57 +1100
commit32e28a68d6089c6ce1ba7084a164901065cf1730 (patch)
tree9891f75a8a31dfdefe156e1c75d7dd167d4a5d64 /src/devices/imagedev/bitbngr.cpp
parentf86b81cf8e873d39f1ef4ec1d9967e4f6a282ee0 (diff)
sitcom: hook up LEDs to PIA outputs to show state visually, softlist a
buch of tutorial programs (mostly displaying patterns on the LEDs)
Diffstat (limited to 'src/devices/imagedev/bitbngr.cpp')
-rw-r--r--src/devices/imagedev/bitbngr.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/devices/imagedev/bitbngr.cpp b/src/devices/imagedev/bitbngr.cpp
index eddf94e0fca..eb56d7251f8 100644
--- a/src/devices/imagedev/bitbngr.cpp
+++ b/src/devices/imagedev/bitbngr.cpp
@@ -23,7 +23,8 @@ const device_type BITBANGER = &device_creator<bitbanger_device>;
bitbanger_device::bitbanger_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock) :
device_t(mconfig, BITBANGER, "Bitbanger", tag, owner, clock, "bitbanger", __FILE__),
- device_image_interface(mconfig, *this)
+ device_image_interface(mconfig, *this),
+ m_interface(nullptr)
{
}