mirror of
https://github.com/MoleskiCoder/EightBit.git
synced 2024-11-05 19:05:32 +00:00
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);
|
||
|
};
|
||
|
}
|