summaryrefslogtreecommitdiffstatshomepage
path: root/src/mess/machine/poly88.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mess/machine/poly88.c')
-rw-r--r--src/mess/machine/poly88.c9
1 files changed, 4 insertions, 5 deletions
diff --git a/src/mess/machine/poly88.c b/src/mess/machine/poly88.c
index 251fddb70b3..69dfaae32fc 100644
--- a/src/mess/machine/poly88.c
+++ b/src/mess/machine/poly88.c
@@ -218,11 +218,10 @@ INTERRUPT_GEN_MEMBER(poly88_state::poly88_interrupt)
device.execute().set_input_line(0, HOLD_LINE);
}
-static WRITE_LINE_DEVICE_HANDLER( poly88_usart_rxready )
+WRITE_LINE_MEMBER(poly88_state::poly88_usart_rxready)
{
- //poly88_state *drvstate = device->machine().driver_data<poly88_state>();
- //drvstate->m_int_vector = 0xe7;
- //device->execute().set_input_line(0, HOLD_LINE);
+ //drvm_int_vector = 0xe7;
+ //execute().set_input_line(0, HOLD_LINE);
}
const i8251_interface poly88_usart_interface=
@@ -232,7 +231,7 @@ const i8251_interface poly88_usart_interface=
DEVCB_NULL,
DEVCB_NULL,
DEVCB_NULL,
- DEVCB_LINE(poly88_usart_rxready),
+ DEVCB_DRIVER_LINE_MEMBER(poly88_state,poly88_usart_rxready),
DEVCB_NULL,
DEVCB_NULL,
DEVCB_NULL