Simplify bus addressing

This commit is contained in:
Adrian Conlon
2025-07-05 09:46:59 +01:00
parent 3bbf300e05
commit c271b28495
5 changed files with 37 additions and 16 deletions

View File

@@ -725,7 +725,7 @@ namespace M6502
protected void AbsoluteAddress() => this.FetchWordAddress();
protected void ZeroPageAddress() => this.Bus.Address.Assign(this.FetchByte(), 0);
protected void ZeroPageAddress() => this.Bus.Address.Assign(this.FetchByte());
protected void ZeroPageIndirectAddress()
{