2024-07-22 11:18:36 +01:00
|
|
|
|
// <copyright file="W65C02.cs" company="Adrian Conlon">
|
|
|
|
|
// Copyright (c) Adrian Conlon. All rights reserved.
|
|
|
|
|
// </copyright>
|
|
|
|
|
|
|
|
|
|
namespace EightBit
|
|
|
|
|
{
|
|
|
|
|
public class W65C02(Bus bus) : M6502Core(bus)
|
|
|
|
|
{
|
2024-07-26 12:14:32 +01:00
|
|
|
|
private bool _stopped;
|
|
|
|
|
private bool _waiting;
|
2024-07-24 17:21:49 +01:00
|
|
|
|
|
2024-07-26 12:13:50 +01:00
|
|
|
|
private bool Stopped
|
|
|
|
|
{
|
|
|
|
|
get => this._stopped; set => this._stopped = value;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private bool Waiting
|
|
|
|
|
{
|
|
|
|
|
get => this._waiting; set => this._waiting = value;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private bool Paused => this.Stopped || this.Waiting;
|
|
|
|
|
|
2024-07-22 11:18:36 +01:00
|
|
|
|
#region Interrupts
|
|
|
|
|
|
|
|
|
|
protected override void Interrupt(byte vector, InterruptSource source, InterruptType type)
|
|
|
|
|
{
|
|
|
|
|
base.Interrupt(vector, source, type);
|
|
|
|
|
this.ResetFlag(StatusBits.DF); // Disable decimal mode (Change from M6502)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
#region Core instruction dispatching
|
|
|
|
|
|
|
|
|
|
protected override bool MaybeExecute()
|
|
|
|
|
{
|
|
|
|
|
if (base.MaybeExecute())
|
|
|
|
|
{
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2024-07-24 17:21:49 +01:00
|
|
|
|
var cycles = this.Cycles;
|
|
|
|
|
switch (this.OpCode)
|
|
|
|
|
{
|
2024-08-23 15:04:56 +01:00
|
|
|
|
case 0x02: this.SwallowFetch(); break; // NOP
|
|
|
|
|
case 0x03: break; // null
|
|
|
|
|
case 0x04: this.ZeroPageRead(); this.TSB(); break; // TSB zp
|
|
|
|
|
case 0x07: this.ZeroPageRead(); this.RMB(Chip.Bit(0)); break; // RMB0 zp
|
|
|
|
|
case 0x0b: break; // null
|
|
|
|
|
case 0x0c: this.AbsoluteRead(); this.TSB(); break; // TSB a
|
|
|
|
|
case 0x0f: this.ZeroPageRead(); this.BBR(Chip.Bit(0)); break; // BBR0 r
|
2024-07-24 17:21:49 +01:00
|
|
|
|
|
|
|
|
|
case 0x12: this.ZeroPageIndirectAddress(); this.OrR(); break; // ORA (zp),y
|
2024-08-23 15:04:56 +01:00
|
|
|
|
case 0x13: break; // null
|
|
|
|
|
case 0x14: this.ZeroPageRead(); this.TRB(); break; // TRB zp
|
|
|
|
|
case 0x17: this.ZeroPageRead(); this.RMB(Chip.Bit(1)); break; // RMB1 zp
|
2024-07-24 17:21:49 +01:00
|
|
|
|
case 0x1a: this.SwallowRead(); this.A = this.INC(this.A); break; // INC A
|
2024-08-23 15:04:56 +01:00
|
|
|
|
case 0x1b: break; // null
|
|
|
|
|
case 0x1c: this.AbsoluteRead(); this.TRB(); break; // TRB a
|
|
|
|
|
case 0x1f: this.ZeroPageRead(); this.BBR(Chip.Bit(1)); break; // BBR1 r
|
|
|
|
|
|
|
|
|
|
case 0x22: this.SwallowFetch(); break; // NOP
|
|
|
|
|
case 0x23: break; // null
|
|
|
|
|
case 0x27: this.ZeroPageRead(); this.RMB(Chip.Bit(2)); break; // RMB2 zp
|
|
|
|
|
case 0x2b: break; // null
|
|
|
|
|
case 0x2f: this.ZeroPageRead(); this.BBR(Chip.Bit(2)); break; // BBR2 r
|
|
|
|
|
|
|
|
|
|
case 0x32: this.ZeroPageIndirectRead(); this.AndR(); break; // AND (zp)
|
|
|
|
|
case 0x33: break; // null
|
|
|
|
|
case 0x34: break; // BIT zp,x
|
|
|
|
|
case 0x37: this.ZeroPageRead(); this.RMB(Chip.Bit(3)); break; // RMB3 zp
|
2024-07-24 17:21:49 +01:00
|
|
|
|
case 0x3a: this.SwallowRead(); this.A = this.DEC(this.A); break; // DEC A
|
2024-08-23 15:04:56 +01:00
|
|
|
|
case 0x3b: break; // null
|
|
|
|
|
case 0x3c: break; // BIT a,x
|
|
|
|
|
case 0x3f: this.ZeroPageRead(); this.BBR(Chip.Bit(3)); break; // BBR3 r
|
|
|
|
|
|
|
|
|
|
case 0x42: this.SwallowFetch(); break; // NOP
|
|
|
|
|
case 0x43: break; // null
|
|
|
|
|
case 0x47: this.ZeroPageRead(); this.RMB(Chip.Bit(4)); break; // RMB4 zp
|
|
|
|
|
case 0x4b: break; // null
|
|
|
|
|
case 0x4f: this.ZeroPageRead(); this.BBR(Chip.Bit(4)); break; // BBR4 r
|
|
|
|
|
|
|
|
|
|
case 0x52: this.ZeroPageIndirectRead(); this.EorR(); break; // EOR (zp)
|
|
|
|
|
case 0x53: break; // null
|
|
|
|
|
case 0x57: this.ZeroPageRead(); this.RMB(Chip.Bit(5)); break; // RMB5 zp
|
2024-07-24 17:21:49 +01:00
|
|
|
|
case 0x5a: this.SwallowRead(); this.Push(this.Y); break; // PHY s
|
2024-08-23 15:04:56 +01:00
|
|
|
|
case 0x5b: break; // null
|
|
|
|
|
case 0x5c: break; // null
|
|
|
|
|
case 0x5f: this.ZeroPageRead(); this.BBR(Chip.Bit(5)); break; // BBR5 r
|
2024-07-24 17:21:49 +01:00
|
|
|
|
|
|
|
|
|
case 0x62: this.SwallowFetch(); break; // *NOP
|
2024-08-23 15:04:56 +01:00
|
|
|
|
case 0x63: break; // null
|
2024-07-24 17:21:49 +01:00
|
|
|
|
case 0x64: this.ZeroPageAddress(); this.MemoryWrite(0); break; // STZ zp
|
2024-08-23 15:04:56 +01:00
|
|
|
|
case 0x67: this.ZeroPageRead(); this.RMB(Chip.Bit(6)); break; // RMB6 zp
|
|
|
|
|
case 0x6b: break; // null
|
|
|
|
|
case 0x6f: this.ZeroPageRead(); this.BBR(Chip.Bit(6)); break; // BBR6 r
|
2024-07-24 17:21:49 +01:00
|
|
|
|
|
2024-08-23 15:04:56 +01:00
|
|
|
|
case 0x72: this.ZeroPageIndirectRead(); this.ADC(); break; // ADC (zp)
|
|
|
|
|
case 0x73: break; // null
|
2024-07-24 17:21:49 +01:00
|
|
|
|
case 0x74: this.ZeroPageXAddress(); this.MemoryWrite(0); break; // STZ zp,x
|
2024-08-23 15:04:56 +01:00
|
|
|
|
case 0x77: this.ZeroPageRead(); this.RMB(Chip.Bit(7)); break; // RMB7 zp
|
2024-07-24 17:21:49 +01:00
|
|
|
|
case 0x7a: this.SwallowRead(); this.SwallowPop(); this.Y = this.Through(this.Pop()); break; // PLY s
|
2024-08-23 15:04:56 +01:00
|
|
|
|
case 0x7b: break; // null
|
|
|
|
|
case 0x7c: break; // JMP (a,x)
|
|
|
|
|
case 0x7f: this.ZeroPageRead(); this.BBR(Chip.Bit(7)); break; // BBR7 r
|
|
|
|
|
|
|
|
|
|
case 0x80: Branch(true); break; // BRA r
|
|
|
|
|
case 0x83: break; // null
|
|
|
|
|
case 0x87: this.ZeroPageRead(); this.SMB(Chip.Bit(0)); break; // SMB0 zp
|
|
|
|
|
case 0x89: break; // BIT # (TBC)
|
|
|
|
|
case 0x8b: break; // null
|
|
|
|
|
case 0x8f: this.ZeroPageRead(); this.BBS(Chip.Bit(0)); break; // BBS0 r
|
|
|
|
|
|
|
|
|
|
case 0x92: ZeroPageIndirectAddress(); this.MemoryWrite(this.A); break; // STA (zp)
|
|
|
|
|
case 0x93: break; // null
|
|
|
|
|
case 0x97: this.ZeroPageRead(); this.SMB(Chip.Bit(1)); break; // SMB1 zp
|
|
|
|
|
case 0x9b: break; // null
|
2024-07-24 17:21:49 +01:00
|
|
|
|
case 0x9c: this.AbsoluteAddress(); this.MemoryWrite(0); break; // STZ a
|
|
|
|
|
case 0x9e: this.AbsoluteXAddress(); this.MemoryWrite(0); break; // STZ a,x
|
2024-08-23 15:04:56 +01:00
|
|
|
|
case 0x9f: this.ZeroPageRead(); this.BBS(Chip.Bit(1)); break; // BBS1 r
|
|
|
|
|
|
|
|
|
|
case 0xa3: break; // null
|
|
|
|
|
case 0xa7: this.ZeroPageRead(); this.SMB(Chip.Bit(2)); break; // SMB2 zp
|
|
|
|
|
case 0xab: break; // null
|
|
|
|
|
case 0xaf: this.ZeroPageRead(); this.BBS(Chip.Bit(2)); break; // BBS2 r
|
|
|
|
|
|
|
|
|
|
case 0xb2: ZeroPageIndirectRead(); this.A = this.Through(); break; // LDA (zp)
|
|
|
|
|
case 0xb3: break; // null
|
|
|
|
|
case 0xb7: this.ZeroPageRead(); this.SMB(Chip.Bit(3)); break; // SMB3 zp
|
|
|
|
|
case 0xbb: break; // null
|
|
|
|
|
case 0xbf: this.ZeroPageRead(); this.BBS(Chip.Bit(3)); break; // BBS3 r
|
|
|
|
|
|
|
|
|
|
case 0xc3: break; // null
|
|
|
|
|
case 0xc7: this.ZeroPageRead(); this.SMB(Chip.Bit(4)); break; // SMB4 zp
|
|
|
|
|
case 0xcb: this.SwallowRead(); this.Waiting = true; break; // WAI i
|
|
|
|
|
case 0xcf: this.ZeroPageRead(); this.BBS(Chip.Bit(4)); break; // BBS4 r
|
|
|
|
|
|
|
|
|
|
case 0xd2: this.ZeroPageIndirectRead(); this.CMP(this.A); break; // CMP (zp)
|
|
|
|
|
case 0xd3: break; // null
|
|
|
|
|
case 0xd7: this.ZeroPageRead(); this.SMB(Chip.Bit(5)); break; // SMB5 zp
|
2024-07-24 17:21:49 +01:00
|
|
|
|
case 0xda: this.SwallowRead(); this.Push(this.X); break; // PHX s
|
2024-08-23 15:04:56 +01:00
|
|
|
|
case 0xdb: this.SwallowRead(); this.Stopped = true; break; // STP i
|
|
|
|
|
case 0xdc: this.SwallowRead(); break; // null
|
|
|
|
|
case 0xdf: this.ZeroPageRead(); this.BBS(Chip.Bit(5)); break; // BBS5 r
|
|
|
|
|
|
|
|
|
|
case 0xe3: break; // null
|
|
|
|
|
case 0xe7: this.ZeroPageRead(); this.SMB(Chip.Bit(6)); break; // SMB6 zp
|
|
|
|
|
case 0xeb: break; // null
|
|
|
|
|
case 0xef: this.ZeroPageRead(); this.BBS(Chip.Bit(6)); break; // BBS6 r
|
|
|
|
|
|
|
|
|
|
case 0xf2: this.ZeroPageIndirectRead(); this.SBC(); break; // SBC (zp)
|
|
|
|
|
case 0xf3: break; // null
|
|
|
|
|
case 0xf7: this.ZeroPageRead(); this.SMB(Chip.Bit(7)); break; // SMB7 zp
|
2024-07-24 17:21:49 +01:00
|
|
|
|
case 0xfa: this.SwallowRead(); this.SwallowPop(); this.X = this.Through(this.Pop()); break; // PLX s
|
2024-08-23 15:04:56 +01:00
|
|
|
|
case 0xfb: break; // null
|
|
|
|
|
case 0xfc: break; // null
|
|
|
|
|
case 0xff: this.ZeroPageRead(); this.BBS(Chip.Bit(7)); break; // BBS7 r
|
2024-07-24 17:21:49 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return cycles != this.Cycles;
|
2024-07-22 11:18:36 +01:00
|
|
|
|
}
|
|
|
|
|
|
2024-07-26 12:13:50 +01:00
|
|
|
|
public override void PoweredStep()
|
|
|
|
|
{
|
|
|
|
|
if (!this.Paused)
|
|
|
|
|
{
|
|
|
|
|
base.PoweredStep();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override void OnLoweredRESET()
|
|
|
|
|
{
|
|
|
|
|
base.OnLoweredRESET();
|
|
|
|
|
this.Stopped = this.Waiting = false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override void OnLoweredINT()
|
|
|
|
|
{
|
|
|
|
|
base.OnLoweredINT();
|
|
|
|
|
this.Waiting = false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override void OnLoweredNMI()
|
|
|
|
|
{
|
|
|
|
|
base.OnLoweredNMI();
|
|
|
|
|
this.Waiting = false;
|
|
|
|
|
}
|
|
|
|
|
|
2024-07-22 11:18:36 +01:00
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
#region Bus/Memory Access
|
|
|
|
|
|
|
|
|
|
protected override void ModifyWrite(byte data)
|
|
|
|
|
{
|
|
|
|
|
// The read will have already taken place...
|
|
|
|
|
this.MemoryRead(); // Modify cycle (Change from M6502)
|
|
|
|
|
this.MemoryWrite(data); // Write cycle
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
#region Addressing modes
|
|
|
|
|
|
|
|
|
|
#region Address page fixup
|
|
|
|
|
|
|
|
|
|
private readonly Register16 lastFetchAddress = new();
|
|
|
|
|
|
|
|
|
|
protected override byte FetchByte()
|
|
|
|
|
{
|
|
|
|
|
this.lastFetchAddress.Assign(this.PC);
|
|
|
|
|
return base.FetchByte();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override void Fixup()
|
|
|
|
|
{
|
|
|
|
|
var fixingLow = this.Bus.Address.Low;
|
|
|
|
|
this.MemoryRead(this.lastFetchAddress);
|
|
|
|
|
this.Bus.Address.Assign(fixingLow, this.FixedPage);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override void FixupBranch(sbyte relative)
|
|
|
|
|
{
|
|
|
|
|
this.NoteFixedAddress(this.PC.Word + relative);
|
|
|
|
|
this.lastFetchAddress.Assign(this.Bus.Address); // Effectively negate the use of "lastFetchAddress" for branch fixup usages
|
|
|
|
|
this.MaybeFixup();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
#region Address resolution
|
|
|
|
|
|
|
|
|
|
protected void GetAddress()
|
|
|
|
|
{
|
|
|
|
|
this.GetWordPaged();
|
|
|
|
|
|
|
|
|
|
if (this.Bus.Address.Low == 0)
|
|
|
|
|
{
|
|
|
|
|
this.Bus.Address.High++;
|
|
|
|
|
}
|
|
|
|
|
|
2024-07-22 12:24:14 +01:00
|
|
|
|
this.Bus.Address.Assign(this.Intermediate.Low, this.MemoryRead());
|
2024-07-22 11:18:36 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override void IndirectAddress()
|
|
|
|
|
{
|
|
|
|
|
this.AbsoluteAddress();
|
|
|
|
|
this.GetAddress();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
2024-07-24 17:21:49 +01:00
|
|
|
|
#region Address and read
|
|
|
|
|
|
|
|
|
|
private void ZeroPageIndirectRead()
|
|
|
|
|
{
|
|
|
|
|
this.ZeroPageIndirectAddress();
|
|
|
|
|
this.MemoryRead();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
2024-07-22 11:18:36 +01:00
|
|
|
|
#endregion
|
2024-08-23 15:04:56 +01:00
|
|
|
|
|
|
|
|
|
private void RMB(byte flag)
|
|
|
|
|
{
|
|
|
|
|
this.MemoryRead();
|
|
|
|
|
this.Bus.Data &= (byte)~flag;
|
|
|
|
|
this.MemoryWrite();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void SMB(byte flag)
|
|
|
|
|
{
|
|
|
|
|
this.MemoryRead();
|
|
|
|
|
this.Bus.Data |= flag;
|
|
|
|
|
this.MemoryWrite();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void BBS(byte flag)
|
|
|
|
|
{
|
|
|
|
|
this.MemoryRead();
|
|
|
|
|
this.Branch(this.Bus.Data & flag);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void BBR(byte flag)
|
|
|
|
|
{
|
|
|
|
|
this.MemoryRead();
|
|
|
|
|
this.BranchNot(this.Bus.Data & flag);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void TSB()
|
|
|
|
|
{
|
|
|
|
|
this.AdjustZero((byte)(this.A & this.Bus.Data));
|
|
|
|
|
this.ModifyWrite((byte)(this.A | this.Bus.Data));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void TRB()
|
|
|
|
|
{
|
|
|
|
|
this.AdjustZero((byte)(this.A & this.Bus.Data));
|
|
|
|
|
this.ModifyWrite((byte)(~this.A & this.Bus.Data));
|
|
|
|
|
}
|
2024-07-22 11:18:36 +01:00
|
|
|
|
}
|
|
|
|
|
}
|