From 6b1cf91a1ff2c56e1d08a714b8bdb6edc8af85f7 Mon Sep 17 00:00:00 2001 From: arbee Date: Sun, 26 Feb 2023 16:50:17 -0500 Subject: [PATCH] maciifx: fix GCC compile. [R. Belmont] --- src/mame/apple/maciifx.cpp | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/src/mame/apple/maciifx.cpp b/src/mame/apple/maciifx.cpp index 32c54d1b7e6..5c33f520b17 100644 --- a/src/mame/apple/maciifx.cpp +++ b/src/mame/apple/maciifx.cpp @@ -104,7 +104,6 @@ private: void phases_w(uint8_t phases); void devsel_w(uint8_t devsel); - WRITE_LINE_MEMBER(hdsel_w); uint32_t biu_r(offs_t offset, uint32_t mem_mask = ~0); void biu_w(offs_t offset, uint32_t data, uint32_t mem_mask = ~0); @@ -381,18 +380,6 @@ void maciifx_state::devsel_w(uint8_t devsel) m_cur_floppy->ss_w(m_hdsel); } -WRITE_LINE_MEMBER(maciifx_state::hdsel_w) -{ - if (state != m_hdsel) - { - if (m_cur_floppy) - { - m_cur_floppy->ss_w(state); - } - } - m_hdsel = state; -} - uint32_t maciifx_state::biu_r(offs_t offset, uint32_t mem_mask) { // printf("biu_r @ %x, mask %08x\n", offset, mem_mask);