diff options
author | 2019-11-18 00:58:48 +1100 | |
---|---|---|
committer | 2019-11-18 00:58:48 +1100 | |
commit | 1fbfa9e071fe1824ea47c567c23778d8ab33cacf (patch) | |
tree | a73f9130e4ad11a15f0acaf899da5a0479538c1c /src/mame/drivers/amiga.cpp | |
parent | 50694d017bf5be29f5523faedeb76463e0565870 (diff) |
bus/amiga/zorro: put in namespace, improve safety a bit (nw)
Diffstat (limited to 'src/mame/drivers/amiga.cpp')
-rw-r--r-- | src/mame/drivers/amiga.cpp | 5 |
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; |