summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/itt3030.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/itt3030.cpp')
-rw-r--r--src/mame/drivers/itt3030.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/itt3030.cpp b/src/mame/drivers/itt3030.cpp
index 2f6251adb59..98f26ad0b32 100644
--- a/src/mame/drivers/itt3030.cpp
+++ b/src/mame/drivers/itt3030.cpp
@@ -598,12 +598,12 @@ READ8_MEMBER(itt3030_state::fdc_stat_r)
/* As far as we can tell, the mess of ttl de-inverts the bus */
READ8_MEMBER(itt3030_state::fdc_r)
{
- return m_fdc->gen_r(offset) ^ 0xff;
+ return m_fdc->read(offset) ^ 0xff;
}
WRITE8_MEMBER(itt3030_state::fdc_w)
{
- m_fdc->gen_w(offset, data ^ 0xff);
+ m_fdc->write(offset, data ^ 0xff);
}
/*