Skip to content

Commit

Permalink
Add keyboard controller SMI fix to Itautec Infoway. Patch from EluanCM.
Browse files Browse the repository at this point in the history
  • Loading branch information
sarah-walker-pcem committed Feb 8, 2021
1 parent 13f53a2 commit 9687a85
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/keyboard_at.c
Original file line number Diff line number Diff line change
Expand Up @@ -591,7 +591,7 @@ void keyboard_at_write(uint16_t port, uint8_t val, void *priv)
break;

case 0xba:
if (romset == ROM_ENDEAVOR || romset == ROM_ZAPPA)
if (romset == ROM_ENDEAVOR || romset == ROM_ZAPPA || romset == ROM_ITAUTEC_INFOWAYM)
keyboard_at_adddata(0);
break;

Expand Down Expand Up @@ -625,7 +625,7 @@ void keyboard_at_write(uint16_t port, uint8_t val, void *priv)
if (romset == ROM_T3100E)
keyboard_at.input_port = (t3100e_mono_get() & 1) ? 0xFF : 0xBF;

if (romset == ROM_ENDEAVOR || romset == ROM_ZAPPA)
if (romset == ROM_ENDEAVOR || romset == ROM_ZAPPA || romset == ROM_ITAUTEC_INFOWAYM)
keyboard_at_adddata(keyboard_at.input_port | 4 | 0x40);
else
keyboard_at_adddata(keyboard_at.input_port | 4);
Expand Down

0 comments on commit 9687a85

Please sign in to comment.