mirror of
https://github.com/MoleskiCoder/EightBitNet.git
synced 2025-02-09 12:31:01 +00:00
43 lines
980 B
C#
43 lines
980 B
C#
namespace M6502.HarteTest
|
|
{
|
|
using EightBit;
|
|
|
|
internal sealed class TestRunner : Bus
|
|
{
|
|
public Ram RAM { get; } = new(0x10000);
|
|
|
|
public M6502 CPU { get; }
|
|
|
|
private readonly MemoryMapping mapping;
|
|
|
|
public TestRunner()
|
|
{
|
|
this.CPU = new(this);
|
|
this.mapping = new(this.RAM, 0x0000, (ushort)Mask.Sixteen, AccessLevel.ReadWrite);
|
|
}
|
|
|
|
public override void Initialize()
|
|
{
|
|
}
|
|
|
|
public override void LowerPOWER()
|
|
{
|
|
this.CPU.LowerPOWER();
|
|
base.LowerPOWER();
|
|
}
|
|
|
|
public override MemoryMapping Mapping(ushort _) => this.mapping;
|
|
|
|
public override void RaisePOWER()
|
|
{
|
|
base.RaisePOWER();
|
|
this.CPU.RaisePOWER();
|
|
this.CPU.RaiseRESET();
|
|
this.CPU.RaiseINT();
|
|
this.CPU.RaiseNMI();
|
|
this.CPU.RaiseSO();
|
|
this.CPU.RaiseRDY();
|
|
}
|
|
}
|
|
}
|