mirror of
https://github.com/MoleskiCoder/EightBit.git
synced 2024-11-05 03:07:44 +00:00
78e5451f93
Signed-off-by: Adrian.Conlon <adrian.conlon@gmail.com>
20 lines
331 B
C++
20 lines
331 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
#include <vector>
|
|
#include <fstream>
|
|
|
|
#include "FuseMemoryDatum.h"
|
|
#include "FuseRegisterState.h"
|
|
|
|
namespace Fuse {
|
|
class Test {
|
|
public:
|
|
std::string description;
|
|
RegisterState registerState;
|
|
std::vector<MemoryDatum> memoryData;
|
|
bool finish = false;
|
|
|
|
void read(std::ifstream& file);
|
|
};
|
|
} |