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

Still need to fix asm and protection emulation. git-svn-id: file:///home/notaz/opt/svn/PicoDrive@769 be3aeb3a-fb24-0410-a615-afba39da0efa
20 lines
408 B
C
20 lines
408 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);
|
|
void PicoSVPStartup(void);
|
|
void PicoSVPMemSetup(void);
|
|
|
|
/* misc */
|
|
void carthw_Xin1_startup(void);
|
|
void carthw_realtec_startup(void);
|
|
void carthw_radica_startup(void);
|