QEMU/Bochs PS/2 Keyboard key repeat
Posted: Sun Aug 18, 2013 4:10 am
I've a bit of an issue with the PS/2 keyboard in QEMU and Bochs. I send some bytes to the keyboard to set it up at the max key repeat rate (0x00). It only works in VirtualBox, not QEMU or Bochs...
This is the code:
It could be something on my end... but so far it works in VBox.
Thanks!
This is the code:
Code: Select all
while(inb(this->CommandPort) & (1 << 1));
outb(this->DataPort, 0xF3);
outb(this->DataPort, 0x00);
Thanks!