summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/machine/apollo.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/machine/apollo.cpp')
-rw-r--r--src/mame/machine/apollo.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/machine/apollo.cpp b/src/mame/machine/apollo.cpp
index 1254b6d8343..7ed02aaf7a8 100644
--- a/src/mame/machine/apollo.cpp
+++ b/src/mame/machine/apollo.cpp
@@ -714,7 +714,7 @@ TIMER_CALLBACK_MEMBER( apollo_state::apollo_rtc_timer )
apollo_sio::apollo_sio(const machine_config &mconfig, const char *tag,
device_t *owner, uint32_t clock) :
- mc68681_device(mconfig, tag, owner, clock),
+ mc68681_base_device(mconfig, APOLLO_SIO, "DN3000/DS3500 SIO", tag, owner, clock, "apollo_sio", __FILE__),
m_csrb(0),
m_ip6(0)
{
@@ -745,7 +745,7 @@ READ8_MEMBER( apollo_sio::read )
"1X/16X Test", "RHRB", "IVR", "Input Ports", "Start Counter",
"Stop Counter" };
- int data = mc68681_device::read(space, offset/2, mem_mask);
+ int data = mc68681_base_device::read(space, offset/2, mem_mask);
switch (offset / 2)
{
@@ -805,7 +805,7 @@ WRITE8_MEMBER( apollo_sio::write )
break;
#endif
}
- mc68681_device::write(space, offset/2, data, mem_mask);
+ mc68681_base_device::write(space, offset/2, data, mem_mask);
}
// device type definition