From a90ca6ba380778f63db012582d7820e69496e487 Mon Sep 17 00:00:00 2001 From: Adrian Conlon Date: Wed, 9 Jan 2019 00:33:56 +0000 Subject: [PATCH] Move RDY initialisation to the CPU power-on sequence. Not strictly correct, but OK. Signed-off-by: Adrian Conlon --- M6502/src/mos6502.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/M6502/src/mos6502.cpp b/M6502/src/mos6502.cpp index 40e9a29..ed6fe1a 100644 --- a/M6502/src/mos6502.cpp +++ b/M6502/src/mos6502.cpp @@ -16,6 +16,7 @@ void EightBit::MOS6502::powerOn() { raise(NMI()); raise(SO()); + raise(RDY()); } int EightBit::MOS6502::step() {