Add Z80 CPU skeleton, RegisterPair struct, and MemoryBus implementation

This commit is contained in:
Marc Parsons
2026-04-08 16:34:49 +01:00
parent 81912da3cb
commit ea828aad2d
9 changed files with 211 additions and 31 deletions

View File

@@ -0,0 +1,8 @@
namespace Core.Interfaces
{
public interface IMemory
{
byte Read(ushort address);
void Write(ushort address, byte value);
}
}