EightBitNet/EightBit/Mapper.cs
Adrian Conlon 3c5e292eae Drop Register16 support (replaced with explicit ushort), add some unit tests (Chip class only at present)
Now runs some instructions before going wrong...

Signed-off-by: Adrian Conlon <Adrian.conlon@gmail.com>
2019-02-03 00:42:55 +00:00

8 lines
114 B
C#

namespace EightBit
{
public interface IMapper
{
MemoryMapping Mapping(ushort address);
}
}