summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/einstein.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/einstein.cpp
parentc8fc4de384174058ffa57a840709e1b35a99ad27 (diff)
input_buffer, output_latch, z80dma: Eliminate now-unnecessary bus_r and bus_w handlers (nw)
Diffstat (limited to 'src/mame/drivers/einstein.cpp')
-rw-r--r--src/mame/drivers/einstein.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/einstein.cpp b/src/mame/drivers/einstein.cpp
index 2d689fd1f63..bf46fe34183 100644
--- a/src/mame/drivers/einstein.cpp
+++ b/src/mame/drivers/einstein.cpp
@@ -834,7 +834,7 @@ void einstein_state::einstein(machine_config &config)
z80pio_device& pio(Z80PIO(config, IC_I063, XTAL_X002 / 2));
pio.out_int_callback().set(FUNC(einstein_state::int_w<0>));
- pio.out_pa_callback().set("cent_data_out", FUNC(output_latch_device::bus_w));
+ pio.out_pa_callback().set("cent_data_out", FUNC(output_latch_device::write));
pio.out_ardy_callback().set(FUNC(einstein_state::ardy_w));
pio.in_pb_callback().set("user", FUNC(einstein_userport_device::read));
pio.out_pb_callback().set("user", FUNC(einstein_userport_device::write));