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