mirror of
https://github.com/MoleskiCoder/EightBitNet.git
synced 2024-11-19 08:31:41 +00:00
726c3fe4cc
Signed-off-by: Adrian Conlon <Adrian.conlon@gmail.com>
78 lines
2.3 KiB
C#
78 lines
2.3 KiB
C#
// <copyright file="LittleEndianProcessor.cs" company="Adrian Conlon">
|
|
// Copyright (c) Adrian Conlon. All rights reserved.
|
|
// </copyright>
|
|
|
|
namespace EightBit
|
|
{
|
|
public abstract class LittleEndianProcessor : Processor
|
|
{
|
|
private readonly Register16 intermediate = new Register16();
|
|
|
|
protected LittleEndianProcessor(Bus memory)
|
|
: base(memory)
|
|
{
|
|
}
|
|
|
|
public override Register16 PeekWord(ushort address)
|
|
{
|
|
this.intermediate.Low = this.Bus.Peek(address);
|
|
this.intermediate.High = this.Bus.Peek(++address);
|
|
return this.intermediate;
|
|
}
|
|
|
|
public override void PokeWord(ushort address, Register16 value)
|
|
{
|
|
this.Bus.Poke(address, value.Low);
|
|
this.Bus.Poke(++address, value.High);
|
|
}
|
|
|
|
protected override Register16 FetchWord()
|
|
{
|
|
this.intermediate.Low = this.FetchByte();
|
|
this.intermediate.High = this.FetchByte();
|
|
return this.intermediate;
|
|
}
|
|
|
|
protected override Register16 GetWord()
|
|
{
|
|
this.intermediate.Low = this.BusRead();
|
|
++this.Bus.Address.Word;
|
|
this.intermediate.High = this.BusRead();
|
|
return this.intermediate;
|
|
}
|
|
|
|
protected override Register16 GetWordPaged(byte page, byte offset)
|
|
{
|
|
this.intermediate.Low = this.BusRead(offset, page);
|
|
this.intermediate.High = this.BusRead(++offset, page);
|
|
return this.intermediate;
|
|
}
|
|
|
|
protected override Register16 PopWord()
|
|
{
|
|
this.intermediate.Low = this.Pop();
|
|
this.intermediate.High = this.Pop();
|
|
return this.intermediate;
|
|
}
|
|
|
|
protected override void PushWord(Register16 value)
|
|
{
|
|
this.Push(value.High);
|
|
this.Push(value.Low);
|
|
}
|
|
|
|
protected override void SetWord(Register16 value)
|
|
{
|
|
this.BusWrite(value.Low);
|
|
++this.Bus.Address.Word;
|
|
this.BusWrite(value.High);
|
|
}
|
|
|
|
protected override void SetWordPaged(byte page, byte offset, Register16 value)
|
|
{
|
|
this.BusWrite(offset, page, value.Low);
|
|
this.BusWrite(++offset, page, value.High);
|
|
}
|
|
}
|
|
}
|