EightBit/inc/Ram.h
Adrian Conlon a673a64c3f Lots of various changes suggested by the code analysis tools.
Signed-off-by: Adrian Conlon <Adrian.conlon@gmail.com>
2018-11-27 22:36:54 +00:00

18 lines
353 B
C++

#pragma once
#include <cstdint>
#include "Rom.h"
namespace EightBit {
// The RAM class is everything the ROM class is, plus
// it's externally 'reference'able and 'poke'able.
class Ram : public Rom {
public:
Ram(size_t size = 0) noexcept;
uint8_t& reference(uint16_t address) final;
void poke(uint16_t address, uint8_t value) final;
};
}