mirror of
https://github.com/MoleskiCoder/EightBit.git
synced 2024-11-08 22:06:20 +00:00
22506ea56c
Signed-off-by: Adrian Conlon <adrian.conlon@gmail.com>
15 lines
217 B
C++
15 lines
217 B
C++
#pragma once
|
|
|
|
#include <cstdint>
|
|
|
|
#include "MemoryMapping.h"
|
|
|
|
namespace EightBit {
|
|
class Mapper {
|
|
public:
|
|
virtual ~Mapper() {};
|
|
|
|
[[nodiscard]] virtual MemoryMapping mapping(uint16_t address) noexcept = 0;
|
|
};
|
|
}
|