summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/asst128.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/asst128.cpp')
-rw-r--r--src/mame/drivers/asst128.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/drivers/asst128.cpp b/src/mame/drivers/asst128.cpp
index 00aa18f5a76..0b5f71ce1ba 100644
--- a/src/mame/drivers/asst128.cpp
+++ b/src/mame/drivers/asst128.cpp
@@ -54,7 +54,7 @@ private:
required_device<pc_fdc_xt_device> m_fdc;
DECLARE_FLOPPY_FORMATS(asst128_formats);
- DECLARE_WRITE8_MEMBER(asst128_fdc_dor_w);
+ void asst128_fdc_dor_w(uint8_t data);
void machine_start() override;
void asst128_io(address_map &map);
@@ -68,10 +68,10 @@ void asst128_state::machine_start()
memcpy(font->base() + 0x0400, memregion("bios")->base() + 0x4000, 0x0400);
}
-WRITE8_MEMBER(asst128_state::asst128_fdc_dor_w)
+void asst128_state::asst128_fdc_dor_w(uint8_t data)
{
m_fdc->tc_w((data & 0x80) == 0x80);
- m_fdc->dor_w(space, offset, data, mem_mask);
+ m_fdc->dor_w(data);
}
void asst128_state::asst128_map(address_map &map)