Tidy a couple of small mistakes in MC6809 test code

Signed-off-by: Adrian Conlon <Adrian.conlon@gmail.com>
This commit is contained in:
Adrian Conlon 2019-06-10 08:51:35 +01:00
parent 6697974711
commit e0188e44cd
2 changed files with 2 additions and 4 deletions

View File

@ -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;

View File

@ -69,6 +69,4 @@ namespace EightBit
Assert.AreEqual(0, this.cpu.Carry);
}
}
}
}