mirror of
https://github.com/MoleskiCoder/EightBitNet.git
synced 2026-04-25 09:16:41 +00:00
IDE suggestions
This commit is contained in:
@@ -4,14 +4,9 @@
|
||||
|
||||
namespace EightBit
|
||||
{
|
||||
public abstract class LittleEndianProcessor : Processor
|
||||
public abstract class LittleEndianProcessor(Bus memory) : Processor(memory)
|
||||
{
|
||||
private readonly Register16 intermediate = new Register16();
|
||||
|
||||
protected LittleEndianProcessor(Bus memory)
|
||||
: base(memory)
|
||||
{
|
||||
}
|
||||
private readonly Register16 intermediate = new();
|
||||
|
||||
public override Register16 PeekWord(ushort address)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user