diff options
author | 2019-01-31 14:49:38 +0900 | |
---|---|---|
committer | 2019-01-31 14:49:38 +0900 | |
commit | 5563d0dcd6caefa3c2d165cdea0e864f19faff71 (patch) | |
tree | 908e04c99b49cff5e48fd2d96675fbdf0b58dca4 /src/devices/bus/isa/adlib.cpp | |
parent | edf3b55b78cd220537b1c403af5cb3a15d893cf2 (diff) |
Remove unnecessary address_space arguments on FM sound chips read/write handlers
2203intf.cpp, 2608intf.cpp, 2610intf.cpp, 2612intf.cpp, 262intf.cpp, 3526intf.cpp, 3812intf.cpp, 8950intf.cpp, ym2151.cpp, ym2413.cpp, ymf271.cpp, ymf278b.cpp : Simplified handlers (nw)
Diffstat (limited to 'src/devices/bus/isa/adlib.cpp')
-rw-r--r-- | src/devices/bus/isa/adlib.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/devices/bus/isa/adlib.cpp b/src/devices/bus/isa/adlib.cpp index 814fdeaaf58..ad2d3735d6e 100644 --- a/src/devices/bus/isa/adlib.cpp +++ b/src/devices/bus/isa/adlib.cpp @@ -20,7 +20,7 @@ READ8_MEMBER( isa8_adlib_device::ym3812_16_r ) uint8_t retVal = 0xff; switch(offset) { - case 0 : retVal = m_ym3812->status_port_r( space, offset ); break; + case 0 : retVal = m_ym3812->status_port_r(); break; } return retVal; } @@ -29,8 +29,8 @@ WRITE8_MEMBER( isa8_adlib_device::ym3812_16_w ) { switch(offset) { - case 0 : m_ym3812->control_port_w( space, offset, data ); break; - case 1 : m_ym3812->write_port_w( space, offset, data ); break; + case 0 : m_ym3812->control_port_w(data); break; + case 1 : m_ym3812->write_port_w(data); break; } } |