mirror of
https://github.com/libretro/beetle-lynx-libretro.git
synced 2024-11-23 08:10:55 +00:00
28 lines
536 B
C
28 lines
536 B
C
|
#ifndef __MDFN_MEMPATCHER_H
|
||
|
#define __MDFN_MEMPATCHER_H
|
||
|
|
||
|
#include "mempatcher-driver.h"
|
||
|
#include <vector>
|
||
|
|
||
|
typedef struct __SUBCHEAT
|
||
|
{
|
||
|
uint32 addr;
|
||
|
uint8 value;
|
||
|
int compare; // < 0 on no compare
|
||
|
} SUBCHEAT;
|
||
|
|
||
|
extern std::vector<SUBCHEAT> SubCheats[8];
|
||
|
extern bool SubCheatsOn;
|
||
|
|
||
|
bool MDFNMP_Init(uint32 ps, uint32 numpages);
|
||
|
void MDFNMP_AddRAM(uint32 size, uint32 address, uint8 *RAM);
|
||
|
void MDFNMP_Kill(void);
|
||
|
|
||
|
|
||
|
void MDFNMP_InstallReadPatches(void);
|
||
|
void MDFNMP_RemoveReadPatches(void);
|
||
|
|
||
|
void MDFNMP_ApplyPeriodicCheats(void);
|
||
|
|
||
|
#endif
|