| 376 | } |
| 377 | |
| 378 | int PS2Keyboard::readUnicode() { |
| 379 | int result; |
| 380 | |
| 381 | result = CharBuffer; |
| 382 | if (!result) result = get_iso8859_code(); |
| 383 | if (!result) return -1; |
| 384 | UTF8next = 0; |
| 385 | CharBuffer = 0; |
| 386 | return result; |
| 387 | } |
| 388 | |
| 389 | PS2Keyboard::PS2Keyboard() { |
| 390 | // nothing to do here, begin() does it all |
nothing calls this directly
no test coverage detected