mirror of
https://github.com/MoleskiCoder/EightBit.git
synced 2024-11-05 19:05:32 +00:00
22506ea56c
Signed-off-by: Adrian Conlon <adrian.conlon@gmail.com>
33 lines
963 B
C++
33 lines
963 B
C++
#pragma once
|
|
|
|
#include <cstdint>
|
|
#include <fstream>
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
#include "Memory.h"
|
|
|
|
namespace EightBit {
|
|
// A read-only Memory implementation that has a fixed size and will
|
|
// *always* returns the same value, from whichever location
|
|
// is being read.
|
|
class UnusedMemory final : public Memory {
|
|
public:
|
|
UnusedMemory(size_t size, uint8_t value) noexcept;
|
|
~UnusedMemory() = default;
|
|
|
|
[[nodiscard]] size_t size() const noexcept final;
|
|
[[nodiscard]] uint8_t peek(uint16_t address) const noexcept final;
|
|
|
|
int load(std::ifstream& file, int writeOffset = 0, int readOffset = 0, int limit = -1) final;
|
|
int load(std::string path, int writeOffset = 0, int readOffset = 0, int limit = -1) final;
|
|
int load(const std::vector<uint8_t>& bytes, int writeOffset = 0, int readOffset = 0, int limit = -1) final;
|
|
|
|
protected:
|
|
void poke(uint16_t address, uint8_t value) noexcept final;
|
|
|
|
private:
|
|
size_t m_size;
|
|
uint8_t m_value;
|
|
};
|
|
} |