summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/prof80.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/prof80.h')
-rw-r--r--src/mame/includes/prof80.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/mame/includes/prof80.h b/src/mame/includes/prof80.h
index 7cb7c35cfe7..b938acbc631 100644
--- a/src/mame/includes/prof80.h
+++ b/src/mame/includes/prof80.h
@@ -38,8 +38,7 @@ public:
, m_rtc(*this, UPD1990A_TAG)
, m_fdc(*this, UPD765_TAG)
, m_ram(*this, RAM_TAG)
- , m_floppy0(*this, UPD765_TAG":0")
- , m_floppy1(*this, UPD765_TAG":1")
+ , m_floppy(*this, UPD765_TAG":%u", 0U)
, m_ecb(*this, ECBBUS_TAG)
, m_rs232a(*this, "rs232a")
, m_rs232b(*this, "rs232b")
@@ -58,8 +57,7 @@ private:
required_device<upd1990a_device> m_rtc;
required_device<upd765a_device> m_fdc;
required_device<ram_device> m_ram;
- required_device<floppy_connector> m_floppy0;
- required_device<floppy_connector> m_floppy1;
+ required_device_array<floppy_connector, 2> m_floppy;
required_device<ecbbus_device> m_ecb;
required_device<rs232_port_device> m_rs232a;
required_device<rs232_port_device> m_rs232b;