summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/machine/dc-ctrl.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/machine/dc-ctrl.cpp')
-rw-r--r--src/mame/machine/dc-ctrl.cpp7
1 files changed, 1 insertions, 6 deletions
diff --git a/src/mame/machine/dc-ctrl.cpp b/src/mame/machine/dc-ctrl.cpp
index 30861245381..fe2925fcf0b 100644
--- a/src/mame/machine/dc-ctrl.cpp
+++ b/src/mame/machine/dc-ctrl.cpp
@@ -11,18 +11,13 @@
dc_common_device::dc_common_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, uint32_t clock) :
maple_device(mconfig, type, tag, owner, clock)
+ , port(*this, {finder_base::DUMMY_TAG, finder_base::DUMMY_TAG, finder_base::DUMMY_TAG, finder_base::DUMMY_TAG, finder_base::DUMMY_TAG, finder_base::DUMMY_TAG, finder_base::DUMMY_TAG, finder_base::DUMMY_TAG})
{
- memset(port_tag, 0, sizeof(port_tag));
}
void dc_common_device::device_start()
{
maple_device::device_start();
-
- for (int i = 0; i < 8; i++)
- {
- port[i] = ioport(port_tag[i]);
- }
}
void dc_common_device::maple_w(const uint32_t *data, uint32_t in_size)