From 95b6657576c67ef091fea3b5858c129303431878 Mon Sep 17 00:00:00 2001 From: Adrian Conlon Date: Sat, 8 Jun 2019 23:31:03 +0100 Subject: [PATCH] Remove extra step instruction in BleTests Signed-off-by: Adrian Conlon --- MC6809/MC6809.UnitTest/BleTests.cs | 1 - 1 file changed, 1 deletion(-) diff --git a/MC6809/MC6809.UnitTest/BleTests.cs b/MC6809/MC6809.UnitTest/BleTests.cs index d2a3168..7bc6767 100644 --- a/MC6809/MC6809.UnitTest/BleTests.cs +++ b/MC6809/MC6809.UnitTest/BleTests.cs @@ -43,7 +43,6 @@ namespace EightBit this.cpu.CC = (byte)StatusBits.ZF; this.cpu.Step(); this.cpu.Step(); - this.cpu.Step(); Assert.AreEqual(2, this.cpu.A); }