From 769c65394b409d5b4a5cb2d44efa587e3b67afdd Mon Sep 17 00:00:00 2001 From: Adrian Conlon Date: Sun, 14 Oct 2018 20:38:07 +0100 Subject: [PATCH] The extra _getch isn't required as I fix the MC6809 CPU emulation. Signed-off-by: Adrian Conlon --- MC6809/test/Board.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/MC6809/test/Board.cpp b/MC6809/test/Board.cpp index c2639ae..0460288 100644 --- a/MC6809/test/Board.cpp +++ b/MC6809/test/Board.cpp @@ -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(); } }