add unit tests (not complete) for 6809 processor. Fix matters arising.

Signed-off-by: Adrian Conlon <adrian.conlon@gmail.com>
This commit is contained in:
Adrian Conlon
2019-04-21 04:47:36 +01:00
parent 294c71c228
commit 0ab5da10ef
38 changed files with 1669 additions and 164 deletions
+2 -2
View File
@@ -21,8 +21,8 @@ namespace EightBit
public override void PokeWord(ushort address, Register16 value)
{
this.Bus.Poke(address, value.Low);
this.Bus.Poke(++address, value.High);
this.Bus.Poke(address, value.High);
this.Bus.Poke(++address, value.Low);
}
protected override Register16 FetchWord()