mirror of
https://github.com/dborth/fceugx.git
synced 2024-11-01 06:55:05 +01:00
21 lines
951 B
C
21 lines
951 B
C
|
|
||
|
/* Type attributes, you can OR them together. */
|
||
|
#define BPOINT_READ 1
|
||
|
#define BPOINT_WRITE 2
|
||
|
#define BPOINT_PC 4
|
||
|
|
||
|
#include "x6502struct.h"
|
||
|
|
||
|
void FCEUI_DumpMem(const char *fname, uint32 start, uint32 end);
|
||
|
void FCEUI_LoadMem(const char *fname, uint32 start, int hl);
|
||
|
void FCEUI_SetCPUCallback(void (*callb)(X6502 *X));
|
||
|
int FCEUI_DeleteBreakPoint(uint32 w);
|
||
|
int FCEUI_ListBreakPoints(int (*callb)(int type, unsigned int A1, unsigned int A2,
|
||
|
void (*Handler)(X6502 *, int type, unsigned int A) ));
|
||
|
int FCEUI_GetBreakPoint(uint32 w, int *type, unsigned int *A1, unsigned int *A2,
|
||
|
void (**Handler)(X6502 *, int type, unsigned int A));
|
||
|
int FCEUI_SetBreakPoint(uint32 w, int type, unsigned int A1, unsigned int A2,
|
||
|
void (*Handler)(X6502 *, int type, unsigned int A));
|
||
|
int FCEUI_AddBreakPoint(int type, unsigned int A1, unsigned int A2,
|
||
|
void (*Handler)(X6502 *, int type, unsigned int A));
|