summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/mario.cpp
diff options
context:
space:
mode:
author AJR <ajrhacker@users.noreply.github.com>2020-03-18 17:39:05 -0400
committer AJR <ajrhacker@users.noreply.github.com>2020-03-18 17:39:41 -0400
commit0cc640b109f1f1e7ee95a96be7e23d4fdcaefff6 (patch)
tree374b254d015c967fab145b12f4b57a7767001e13 /src/mame/drivers/mario.cpp
parentc8fc4de384174058ffa57a840709e1b35a99ad27 (diff)
input_buffer, output_latch, z80dma: Eliminate now-unnecessary bus_r and bus_w handlers (nw)
Diffstat (limited to 'src/mame/drivers/mario.cpp')
-rw-r--r--src/mame/drivers/mario.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/mario.cpp b/src/mame/drivers/mario.cpp
index c937aa5e377..6349f290ec1 100644
--- a/src/mame/drivers/mario.cpp
+++ b/src/mame/drivers/mario.cpp
@@ -176,7 +176,7 @@ void mario_state::masao_map(address_map &map)
void mario_state::mario_io_map(address_map &map)
{
map.global_mask(0xff);
- map(0x00, 0x00).rw(m_z80dma, FUNC(z80dma_device::bus_r), FUNC(z80dma_device::bus_w)); /* dma controller */
+ map(0x00, 0x00).rw(m_z80dma, FUNC(z80dma_device::read), FUNC(z80dma_device::write)); /* dma controller */
}