EightBitNet/EightBit/Mapper.cs

8 lines
118 B
C#
Raw Normal View History

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