EightBit/Z80/fusetest_Z80/FuseTestEvent.h

20 lines
267 B
C
Raw Normal View History

#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);
};
}