mirror of
https://github.com/libretro/beetle-psx-libretro.git
synced 2024-11-23 00:39:40 +00:00
25 lines
519 B
C++
25 lines
519 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;
|
|
|
|
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);
|
|
void MDFNMP_RegSearchable(uint32 addr, uint32 size);
|
|
|
|
#endif
|