Previous 199869 Revisions Next

r19938 Sunday 30th December, 2012 at 03:18:44 UTC by Carl
[mess] tandy1t.c: make 1000sx keyboard work (nw)
[src/mess/machine]tandy1t.c

trunk/src/mess/machine/tandy1t.c
r19937r19938
205205      tandy_ppi.portb = data;
206206      pit8253_gate2_w(space.machine().device("pit8253"), BIT(data, 0));
207207      pc_speaker_set_spkrdata( space.machine(), data & 0x02 );
208      pc_keyb_set_clock(data&0x40);
208      // sx enables keyboard from bit 3, others bit 6, hopefully theres no conflict
209      pc_keyb_set_clock(data&0x48);
209210      if ( data & 0x80 )
210211      {
211212         pc_keyb_clear();

Previous 199869 Revisions Next


© 1997-2024 The MAME Team