Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
alexbevi
GitHub Repository: alexbevi/BizHawk
Path: blob/master/libsnes/bsnes/gameboy/cheat/cheat.hpp
2 views
1
struct CheatCode {
2
unsigned addr;
3
unsigned data;
4
unsigned comp;
5
};
6
7
struct Cheat : public linear_vector<CheatCode> {
8
static bool decode(const string &code, unsigned &addr, unsigned &data, unsigned &comp);
9
10
void synchronize();
11
bool override[65536];
12
};
13
14
extern Cheat cheat;
15
16