EightBit/inc/MemoryMapping.h
Adrian Conlon 62f3cd717b First set of C++17/14 changes to the core library
Signed-off-by: Adrian Conlon <Adrian.conlon@gmail.com>
2018-10-27 17:30:23 +01:00

17 lines
239 B
C++

#pragma once
#include <cstdint>
#include "Memory.h"
namespace EightBit {
struct MemoryMapping {
enum AccessLevel { Unknown, ReadOnly, ReadWrite, };
Memory& memory;
uint16_t begin = 0xffff;
AccessLevel access = Unknown;
};
}