diff options
Diffstat (limited to 'src/devices/machine/k033906.cpp')
-rw-r--r-- | src/devices/machine/k033906.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/devices/machine/k033906.cpp b/src/devices/machine/k033906.cpp index b799ad11cd0..7712414c46d 100644 --- a/src/devices/machine/k033906.cpp +++ b/src/devices/machine/k033906.cpp @@ -22,7 +22,9 @@ const device_type K033906 = &device_creator<k033906_device>; //------------------------------------------------- k033906_device::k033906_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) - : device_t(mconfig, K033906, "K033906 PCI bridge", tag, owner, clock, "k033906", __FILE__), m_reg_set(0), m_voodoo(*this) + : device_t(mconfig, K033906, "K033906 PCI bridge", tag, owner, clock, "k033906", __FILE__) + , m_reg_set(0) + , m_voodoo(*this, finder_base::DUMMY_TAG) { } |