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
267 B
C++
20 lines
267 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
|
|
namespace Fuse {
|
|
class TestEvent
|
|
{
|
|
public:
|
|
bool valid;
|
|
std::string specifier;
|
|
int cycles, address, value;
|
|
|
|
TestEvent()
|
|
: valid(false),
|
|
cycles(-1), address(-1), value(-1) {
|
|
}
|
|
|
|
void read(std::ifstream& file);
|
|
};
|
|
} |