mirror of
https://github.com/RaySollium99/picodrive.git
synced 2025-09-05 07:17:45 -04:00

git-svn-id: file:///home/notaz/opt/svn/PicoDrive@320 be3aeb3a-fb24-0410-a615-afba39da0efa
18 lines
434 B
C
18 lines
434 B
C
|
|
/* svp */
|
|
#include "svp/ssp16.h"
|
|
|
|
typedef struct {
|
|
unsigned char iram_rom[0x20000]; // IRAM (0-0x7ff) and program ROM (0x800-0x1ffff)
|
|
unsigned char dram[0x20000];
|
|
ssp1601_t ssp1601;
|
|
} svp_t;
|
|
|
|
extern svp_t *svp;
|
|
|
|
void PicoSVPInit(void);
|
|
|
|
unsigned int PicoSVPRead16(unsigned int a, int realsize);
|
|
void PicoSVPWrite8 (unsigned int a, unsigned int d, int realsize);
|
|
void PicoSVPWrite16(unsigned int a, unsigned int d, int realsize);
|
|
|