diff options
author | 2018-08-10 09:45:53 +0200 | |
---|---|---|
committer | 2018-08-10 09:47:04 +0200 | |
commit | f1b7a2f97e0a31ab928283732388bec2e6b8f043 (patch) | |
tree | 158df2a8daa410be1e5882d1369a89af2860c5f8 /src/devices/bus/tvc | |
parent | e78ca34bac6e5ef1e8ae8deebae9ae8563cb1b04 (diff) |
wd_fdc: Simplify API. Plus some collateral damage [O. Galibert]
Diffstat (limited to 'src/devices/bus/tvc')
-rw-r--r-- | src/devices/bus/tvc/hbf.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/bus/tvc/hbf.cpp b/src/devices/bus/tvc/hbf.cpp index d8065978cda..cfc81ec46b9 100644 --- a/src/devices/bus/tvc/hbf.cpp +++ b/src/devices/bus/tvc/hbf.cpp @@ -133,7 +133,7 @@ READ8_MEMBER(tvc_hbf_device::io_read) switch((offset>>2) & 0x03) { case 0x00: - return m_fdc->read(space, offset & 3); + return m_fdc->read(offset & 3); case 0x01: return (m_fdc->drq_r()<<7) | (m_fdc->intrq_r() ? 0x01 : 0x00); default: @@ -150,7 +150,7 @@ WRITE8_MEMBER(tvc_hbf_device::io_write) switch((offset>>2) & 0x03) { case 0x00: - m_fdc->write(space, offset & 3, data); + m_fdc->write(offset & 3, data); break; case 0x01: { |