Add Z80 CPU skeleton, RegisterPair struct, and MemoryBus implementation
This commit is contained in:
8
Core/Interfaces/IMemory.cs
Normal file
8
Core/Interfaces/IMemory.cs
Normal file
@@ -0,0 +1,8 @@
|
||||
namespace Core.Interfaces
|
||||
{
|
||||
public interface IMemory
|
||||
{
|
||||
byte Read(ushort address);
|
||||
void Write(ushort address, byte value);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user