EightBitNet/EightBit/IMapper.cs
Adrian Conlon cf4e633034 Implement some suggestions from the code analysis.
Signed-off-by: Adrian Conlon <Adrian.conlon@gmail.com>
2019-02-14 23:51:32 +00:00

12 lines
242 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 absolute);
}
}