EightBit/LR35902/fusetest_LR35902/FuseMemoryDatum.h
Adrian.Conlon f0515ae65f First stab at a port of the fuse tests to LR35902.
Signed-off-by: Adrian.Conlon <adrian.conlon@gmail.com>
2017-08-10 20:34:17 +01:00

23 lines
329 B
C++

#pragma once
#include <cinttypes>
#include <vector>
#include <fstream>
namespace Fuse {
class MemoryDatum {
private:
bool finish;
public:
int address;
std::vector<uint8_t> bytes;
MemoryDatum()
: address(-1),
finish(false) {}
bool finished() const { return finish; }
void read(std::ifstream& file);
};
}