EightBitNet/EightBit/MemoryMapping.cs
Adrian Conlon 0e8a530573 More analysis suggested tidy ups.
Signed-off-by: Adrian Conlon <Adrian.conlon@gmail.com>
2019-02-06 23:41:56 +00:00

26 lines
621 B
C#

// <copyright file="MemoryMapping.cs" company="Adrian Conlon">
// Copyright (c) Adrian Conlon. All rights reserved.
// </copyright>
namespace EightBit
{
public class MemoryMapping
{
public MemoryMapping(Memory memory, ushort begin, ushort mask, AccessLevel access)
{
this.Memory = memory;
this.Begin = begin;
this.Mask = mask;
this.Access = access;
}
public Memory Memory { get; set; }
public ushort Begin { get; set; }
public ushort Mask { get; set; }
public AccessLevel Access { get; set; }
}
}