| 42 | unsigned int FrozenAddressCount = 0; //Keeps up with the Frozen address count, necessary for using in other dialogs (such as hex editor) |
| 43 | |
| 44 | void FCEU_CheatResetRAM(void) |
| 45 | { |
| 46 | int x; |
| 47 | |
| 48 | for(x=0;x<64;x++) |
| 49 | CheatRPtrs[x]=0; |
| 50 | } |
| 51 | |
| 52 | void FCEU_CheatAddRAM(int s, uint32 A, uint8 *p) |
| 53 | { |