The extra _getch isn't required as I fix the MC6809 CPU emulation.

Signed-off-by: Adrian Conlon <Adrian.conlon@gmail.com>
This commit is contained in:
Adrian Conlon 2018-10-14 20:38:07 +01:00
parent 12dc90c064
commit 769c65394b

View File

@ -106,7 +106,6 @@ void Board::updateAciaPins(const EightBit::Chip::PinLevel rw) {
void Board::Cpu_ExecutedInstruction_Acia(EightBit::mc6809&) {
if (_kbhit()) {
ACIA().RDR() = _getch();
_getch(); // XXXX Why do I need the second getch??
ACIA().markReceiveStarting();
}
}