From 48c2ffa99f1389ecfb6e0402b9b6c2293b5e29b0 Mon Sep 17 00:00:00 2001 From: Adrian Conlon Date: Sat, 4 May 2019 15:19:18 +0100 Subject: [PATCH] Correct the MC6809 test code to properly initialise the MC6850 Signed-off-by: Adrian Conlon --- MC6809/MC6809.Test/Board.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MC6809/MC6809.Test/Board.cs b/MC6809/MC6809.Test/Board.cs index d90041d..c5f09f4 100644 --- a/MC6809/MC6809.Test/Board.cs +++ b/MC6809/MC6809.Test/Board.cs @@ -43,7 +43,7 @@ // Get the ACIA ready for action this.Address.Word = 0b1010000000000000; - this.ACIA.DATA = (byte)(MC6850.ControlRegister.CR0 | MC6850.ControlRegister.CR1); // Master reset + this.Data = (byte)(MC6850.ControlRegister.CR0 | MC6850.ControlRegister.CR1); // Master reset this.UpdateAciaPinsWrite(); this.ACIA.CTS.Lower(); this.ACIA.RaisePOWER();