bsnes/gb/cheat/cheat.hpp

15 lines
270 B
C++

struct CheatCode {
unsigned addr;
unsigned data;
unsigned comp;
};
struct Cheat : public vector<CheatCode> {
static bool decode(string code, unsigned& addr, unsigned& data, unsigned& comp);
void synchronize();
bool override[65536];
};
extern Cheat cheat;