mirror of
https://github.com/MoleskiCoder/EightBitNet.git
synced 2025-01-11 07:30:10 +00:00
224000c4c7
Signed-off-by: Adrian Conlon <Adrian.conlon@gmail.com>
12 lines
241 B
C#
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);
|
|
}
|
|
}
|