summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine
diff options
context:
space:
mode:
author arbee <rb6502@users.noreply.github.com>2020-05-23 19:28:13 -0400
committer arbee <rb6502@users.noreply.github.com>2020-05-23 19:28:13 -0400
commit1c684902e29cea17232ad763956a9865fa651e69 (patch)
tree59e0f6dba1a3c364d1504f25c33d7c513937c115 /src/devices/machine
parent23e8c957e839a7e2d76f38132258490ed1f20d03 (diff)
apple2: introduce new accurate IWM controller and switch apple2cr1/3/4 to use it [O. Galibert, R. Belmont]
Diffstat (limited to 'src/devices/machine')
-rw-r--r--src/devices/machine/applefdc.cpp4
-rw-r--r--src/devices/machine/applefdc.h10
2 files changed, 7 insertions, 7 deletions
diff --git a/src/devices/machine/applefdc.cpp b/src/devices/machine/applefdc.cpp
index 2e4cfb1266e..da817ccb1d8 100644
--- a/src/devices/machine/applefdc.cpp
+++ b/src/devices/machine/applefdc.cpp
@@ -578,9 +578,9 @@ applefdc_device::applefdc_device(const machine_config &mconfig, const char *tag,
IWM - Used on early Macs
***************************************************************************/
-DEFINE_DEVICE_TYPE(LEGACY_IWM, iwm_device, "iwml", "Apple IWM (Integrated Woz Machine) (legacy)")
+DEFINE_DEVICE_TYPE(LEGACY_IWM, legacy_iwm_device, "iwml", "Apple IWM (Integrated Woz Machine) (legacy)")
-iwm_device::iwm_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock)
+legacy_iwm_device::legacy_iwm_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock)
: applefdc_base_device(APPLEFDC_IWM, mconfig, LEGACY_IWM, tag, owner, clock)
{
}
diff --git a/src/devices/machine/applefdc.h b/src/devices/machine/applefdc.h
index 43ff81d8d77..cf8f06f4cb9 100644
--- a/src/devices/machine/applefdc.h
+++ b/src/devices/machine/applefdc.h
@@ -31,7 +31,7 @@
#define APPLEFDC_PH3 0x08
DECLARE_DEVICE_TYPE(LEGACY_APPLEFDC, applefdc_device)
-DECLARE_DEVICE_TYPE(LEGACY_IWM, iwm_device)
+DECLARE_DEVICE_TYPE(LEGACY_IWM, legacy_iwm_device)
@@ -135,16 +135,16 @@ public:
IWM - Used on early Macs
***************************************************************************/
-class iwm_device : public applefdc_base_device
+class legacy_iwm_device : public applefdc_base_device
{
public:
- iwm_device(const machine_config &mconfig, const char *tag, device_t *owner, const applefdc_interface *intrf)
- : iwm_device(mconfig, tag, owner, (uint32_t)0)
+ legacy_iwm_device(const machine_config &mconfig, const char *tag, device_t *owner, const applefdc_interface *intrf)
+ : legacy_iwm_device(mconfig, tag, owner, (uint32_t)0)
{
set_config(intrf);
}
- iwm_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
+ legacy_iwm_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
static constexpr feature_type imperfect_features() { return feature::DISK; }
};