summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/pofo/hpc101.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/pofo/hpc101.cpp')
-rw-r--r--src/devices/bus/pofo/hpc101.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/devices/bus/pofo/hpc101.cpp b/src/devices/bus/pofo/hpc101.cpp
index d62f1002f7d..692c42ae7fc 100644
--- a/src/devices/bus/pofo/hpc101.cpp
+++ b/src/devices/bus/pofo/hpc101.cpp
@@ -36,9 +36,9 @@ DEFINE_DEVICE_TYPE(POFO_HPC101, pofo_hpc101_device, "pofo_hpc101", "Atari Portfo
void pofo_hpc101_device::device_add_mconfig(machine_config &config)
{
I8255A(config, m_ppi);
- m_ppi->out_pa_callback().set("cent_data_out", FUNC(output_latch_device::bus_w));
- m_ppi->out_pb_callback().set("cent_ctrl_out", FUNC(output_latch_device::bus_w));
- m_ppi->in_pc_callback().set("cent_status_in", FUNC(input_buffer_device::bus_r));
+ m_ppi->out_pa_callback().set("cent_data_out", FUNC(output_latch_device::write));
+ m_ppi->out_pb_callback().set("cent_ctrl_out", FUNC(output_latch_device::write));
+ m_ppi->in_pc_callback().set("cent_status_in", FUNC(input_buffer_device::read));
centronics_device &centronics(CENTRONICS(config, CENTRONICS_TAG, centronics_devices, "printer"));
centronics.ack_handler().set("cent_status_in", FUNC(input_buffer_device::write_bit5));