diff options
author | 2013-05-23 01:52:03 +0000 | |
---|---|---|
committer | 2013-05-23 01:52:03 +0000 | |
commit | e7210a3a57496d2e052b2d55a572d827cc0e6ec5 (patch) | |
tree | 6684f16d2c1e5dc0143ce407a1617789a29eae71 /src/mess/drivers/applix.c | |
parent | d23bbdd10e563096649c40d17c47ea547ad18ffb (diff) |
(MESS) Applix: Last one for today.
Diffstat (limited to 'src/mess/drivers/applix.c')
-rw-r--r-- | src/mess/drivers/applix.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/mess/drivers/applix.c b/src/mess/drivers/applix.c index 013f7135b45..4ec868c0d27 100644 --- a/src/mess/drivers/applix.c +++ b/src/mess/drivers/applix.c @@ -492,10 +492,12 @@ static const via6522_interface applix_via = WRITE_LINE_MEMBER( applix_state::kbd_clock_w ) { + m_via->write_cb1(state); // need to drop unknown number of pulses } WRITE_LINE_MEMBER( applix_state::kbd_data_w ) { + m_via->write_cb2(state); } static const pc_kbdc_interface applix_kbdc = |