From 928205511511aef152203785121a57ddbe349866 Mon Sep 17 00:00:00 2001 From: arbee Date: Tue, 11 Jun 2024 23:30:11 -0400 Subject: apple/maciifx.cpp: Fix the 60.15 Hz timer so the boot process advances. [R. Belmont] --- src/mame/apple/maciifx.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/mame/apple/maciifx.cpp b/src/mame/apple/maciifx.cpp index ac1aa7fe4df..c3ad6b9d83f 100644 --- a/src/mame/apple/maciifx.cpp +++ b/src/mame/apple/maciifx.cpp @@ -170,6 +170,8 @@ void maciifx_state::machine_reset() space.unmap_write(0x00000000, memory_end); space.install_rom(0x00000000, memory_end & ~memory_mirror, memory_mirror, m_rom_ptr); m_overlay = true; + + m_6015_timer->adjust(attotime::from_hz(60.15), 0, attotime::from_hz(60.15)); } uint32_t maciifx_state::rom_switch_r(offs_t offset) -- cgit v1.2.3