mirror of
https://github.com/MoleskiCoder/EightBit.git
synced 2024-11-18 11:06:15 +00:00
f38d326ca7
Signed-off-by: Adrian Conlon <Adrian.conlon@gmail.com>
20 lines
310 B
C++
20 lines
310 B
C++
#pragma once
|
|
|
|
#include <cstdint>
|
|
#include "Chip.h"
|
|
|
|
namespace EightBit {
|
|
|
|
class Memory;
|
|
|
|
struct MemoryMapping {
|
|
|
|
enum class AccessLevel { Unknown, ReadOnly, WriteOnly, ReadWrite };
|
|
|
|
Memory& memory;
|
|
uint16_t begin = Chip::Mask16;
|
|
uint16_t mask = 0U;
|
|
AccessLevel access = AccessLevel::Unknown;
|
|
};
|
|
}
|