15#include "SubComponent.h"
22class RegressionTester :
public SubComponent {
24 Descriptions descriptions = {{
26 .name =
"RegressionTester",
27 .description =
"Regression Tester"
31 static constexpr isize X1 = 104;
32 static constexpr isize Y1 = 17;
33 static constexpr isize X2 = 488;
34 static constexpr isize Y2 = 291;
39 string dumpTexturePath =
"texture";
59 using SubComponent::SubComponent;
61 RegressionTester& operator= (
const RegressionTester& other) {
return *
this; }
70 template <
class T>
void serialize(T& worker) { } SERIALIZERS(serialize);
79 const Descriptions &getDescriptions()
const override {
return descriptions; }
83 void _dump(Category category, std::ostream& os)
const override { }
93 void prepare(C64 &c64, C64Model model);
96 void run(
string path);
99 void dumpTexture(C64 &c64);
100 void dumpTexture(C64 &c64,
const string &filename);
101 void dumpTexture(C64 &c64, std::ostream& os);
111 void debugcart(u8 value);
VirtualC64 project namespace.
Definition CmdQueue.cpp:16