From e0188e44cded92dfa676181039c97e4c91102f9c Mon Sep 17 00:00:00 2001 From: Adrian Conlon Date: Mon, 10 Jun 2019 08:51:35 +0100 Subject: [PATCH] Tidy a couple of small mistakes in MC6809 test code Signed-off-by: Adrian Conlon --- MC6809/MC6809.UnitTest/EorTests.cs | 2 +- MC6809/MC6809.UnitTest/MulTests.cs | 4 +--- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/MC6809/MC6809.UnitTest/EorTests.cs b/MC6809/MC6809.UnitTest/EorTests.cs index 644adc1..48bf8c2 100644 --- a/MC6809/MC6809.UnitTest/EorTests.cs +++ b/MC6809/MC6809.UnitTest/EorTests.cs @@ -30,7 +30,7 @@ namespace EightBit public void Cleanup() => this.board.LowerPOWER(); [TestMethod] - public void TestEOR_implied() + public void TestEOR_indexed() { this.cpu.Y.Word = 0x12f0; this.cpu.A = 0xf2; diff --git a/MC6809/MC6809.UnitTest/MulTests.cs b/MC6809/MC6809.UnitTest/MulTests.cs index 9e6c9db..e50492d 100644 --- a/MC6809/MC6809.UnitTest/MulTests.cs +++ b/MC6809/MC6809.UnitTest/MulTests.cs @@ -69,6 +69,4 @@ namespace EightBit Assert.AreEqual(0, this.cpu.Carry); } } -} - - +} \ No newline at end of file