IDE suggestions

This commit is contained in:
Adrian Conlon
2024-05-19 09:07:20 +01:00
parent 6cbffa1051
commit e0235f396e
19 changed files with 151 additions and 192 deletions
+2 -7
View File
@@ -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)
{