lsnes/nes/cheat/cheat.hpp
2013-05-03 17:47:34 +03:00

14 lines
284 B
C++
Executable file

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