EightBit/inc/UnusedMemory.h
Adrian Conlon 9960ad6012 Tidy return parameter usage a little within the EightBit library.
Signed-off-by: Adrian Conlon <Adrian.conlon@gmail.com>
2018-11-29 00:09:40 +00:00

33 lines
927 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);
~UnusedMemory() {};
[[nodiscard]] size_t size() const final;
[[nodiscard]] uint8_t peek(uint16_t address) const final;
int load(std::ifstream& file, int writeOffset = 0, int readOffset = 0, int limit = -1) final;
int load(const 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) final;
private:
size_t m_size;
uint8_t m_value;
};
}