EightBitNet/EightBit/IMapper.cs
2019-02-04 23:52:21 +00:00

12 lines
241 B
C#

// <copyright file="IMapper.cs" company="Adrian Conlon">
// Copyright (c) Adrian Conlon. All rights reserved.
// </copyright>
namespace EightBit
{
public interface IMapper
{
MemoryMapping Mapping(ushort address);
}
}