summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/amiga.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/amiga.cpp')
-rw-r--r--src/mame/drivers/amiga.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/mame/drivers/amiga.cpp b/src/mame/drivers/amiga.cpp
index 978f624c91a..f8aed0bf07c 100644
--- a/src/mame/drivers/amiga.cpp
+++ b/src/mame/drivers/amiga.cpp
@@ -33,7 +33,6 @@
//**************************************************************************
#define EXP_SLOT_TAG "exp"
-#define ZORROBUS_TAG "zorrobus"
//**************************************************************************
@@ -260,7 +259,7 @@ public:
a2000_state(const machine_config &mconfig, device_type type, const char *tag) :
amiga_state(mconfig, type, tag),
m_rtc(*this, "u65"),
- m_zorro(*this, ZORROBUS_TAG),
+ m_zorro(*this, "zorrobus"),
m_zorro2_int2(0),
m_zorro2_int6(0)
{ }
@@ -287,7 +286,7 @@ protected:
private:
// devices
required_device<msm6242_device> m_rtc;
- required_device<zorro2_device> m_zorro;
+ required_device<zorro2_bus_device> m_zorro;
// internal state
int m_zorro2_int2;