From dd9bac131c44aa761376080b0b50fd945643ac78 Mon Sep 17 00:00:00 2001 From: hap Date: Wed, 28 Nov 2018 11:32:09 +0100 Subject: [PATCH] i8255: re-add comment (nw) --- src/devices/machine/i8255.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/devices/machine/i8255.h b/src/devices/machine/i8255.h index 76753ba4c47..73dedb92712 100644 --- a/src/devices/machine/i8255.h +++ b/src/devices/machine/i8255.h @@ -53,6 +53,8 @@ public: auto out_pa_callback() { return m_out_pa_cb.bind(); } auto out_pb_callback() { return m_out_pb_cb.bind(); } auto out_pc_callback() { return m_out_pc_cb.bind(); } + + // output state when pins are in tri-state, default 0xff auto tri_pa_callback() { return m_tri_pa_cb.bind(); } auto tri_pb_callback() { return m_tri_pb_cb.bind(); }