summaryrefslogtreecommitdiffstatshomepage
path: root/src/mess/machine/kb_keytro.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mess/machine/kb_keytro.c')
-rw-r--r--src/mess/machine/kb_keytro.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mess/machine/kb_keytro.c b/src/mess/machine/kb_keytro.c
index 52f18f6ac11..235552fdb78 100644
--- a/src/mess/machine/kb_keytro.c
+++ b/src/mess/machine/kb_keytro.c
@@ -468,13 +468,13 @@ const rom_entry *pc_kbd_keytronic_pc3270_device::device_rom_region() const
WRITE_LINE_MEMBER( pc_kbd_keytronic_pc3270_device::clock_write )
{
- device_set_input_line( m_cpu, MCS51_INT0_LINE, state );
+ m_cpu->set_input_line(MCS51_INT0_LINE, state );
}
WRITE_LINE_MEMBER( pc_kbd_keytronic_pc3270_device::data_write )
{
- device_set_input_line( m_cpu, MCS51_T0_LINE, state);
+ m_cpu->set_input_line(MCS51_T0_LINE, state);
}