mirror of
https://github.com/MoleskiCoder/EightBitNet.git
synced 2025-11-26 12:17:43 +00:00
Port of EightBit library to .Net (unworking!)
Signed-off-by: Adrian Conlon <Adrian.conlon@gmail.com>
This commit is contained in:
23
EightBit/MemoryMapping.cs
Normal file
23
EightBit/MemoryMapping.cs
Normal file
@@ -0,0 +1,23 @@
|
||||
namespace EightBit
|
||||
{
|
||||
public class MemoryMapping
|
||||
{
|
||||
private Memory memory;
|
||||
private ushort begin;
|
||||
private ushort mask;
|
||||
private AccessLevel access;
|
||||
|
||||
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 => memory; set => memory = value; }
|
||||
public ushort Begin { get => begin; set => begin = value; }
|
||||
public ushort Mask { get => mask; set => mask = value; }
|
||||
public AccessLevel Access { get => access; set => access = value; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user