Skip to content

Commit

Permalink
Fix PS/2 keyboard identify response
Browse files Browse the repository at this point in the history
Add hexadecimal prefix to identify response's second byte.
  • Loading branch information
Bananymous authored and copy committed Apr 20, 2024
1 parent 4efc371 commit fb67064
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ps2.js
Original file line number Diff line number Diff line change
Expand Up @@ -705,7 +705,7 @@ PS2.prototype.port60_write = function(write_byte)
case 0xF2:
// identify
this.kbd_buffer.push(0xAB);
this.kbd_buffer.push(83);
this.kbd_buffer.push(0x83);
break;
case 0xF3:
// Set typematic rate and delay
Expand Down

0 comments on commit fb67064

Please sign in to comment.