2018-12-29 19:17:36 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <cstdint>
|
|
|
|
|
|
|
|
#include "MemoryMapping.h"
|
|
|
|
|
|
|
|
namespace EightBit {
|
|
|
|
class Mapper {
|
|
|
|
public:
|
2021-07-18 13:28:40 +00:00
|
|
|
[[nodiscard]] virtual MemoryMapping mapping(uint16_t address) noexcept = 0;
|
2018-12-29 19:17:36 +00:00
|
|
|
};
|
|
|
|
}
|