summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/apollo.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/apollo.cpp')
-rw-r--r--src/mame/drivers/apollo.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/drivers/apollo.cpp b/src/mame/drivers/apollo.cpp
index 9529344e570..5945699ebd7 100644
--- a/src/mame/drivers/apollo.cpp
+++ b/src/mame/drivers/apollo.cpp
@@ -910,7 +910,7 @@ void apollo_state::machine_reset()
{
MLOG1(("machine_reset"));
- machine_reset_apollo();
+ MACHINE_RESET_CALL_MEMBER(apollo);
#ifdef APOLLO_XXL
// set configuration
@@ -934,7 +934,7 @@ WRITE_LINE_MEMBER(apollo_state::apollo_reset_instr_callback)
MLOG1(("apollo_reset_instr_callback"));
// reset the CPU board devices
- machine_reset_apollo();
+ MACHINE_RESET_CALL_MEMBER(apollo);
// reset the ISA bus devices
m_isa->reset();
@@ -960,7 +960,7 @@ void apollo_state::machine_start(){
// clear ram
memset(messram->ptr(), 0x55, messram->bytes());
- machine_start_apollo();
+ MACHINE_START_CALL_MEMBER(apollo);
// install nop handlers for unmapped ISA bus addresses
m_isa->install16_device((ATBUS_IO_BASE - 0x40000) >> 7, (ATBUS_IO_END - 0x40000) >> 7, read16_delegate(FUNC(apollo_state::apollo_atbus_unmap_io_r), this), write16_delegate(FUNC(apollo_state::apollo_atbus_unmap_io_w), this));