mirror of
https://github.com/RaySollium99/picodrive.git
synced 2025-09-05 07:17:45 -04:00
some readme and general cleanups
This commit is contained in:
parent
9a1f192a14
commit
92dfd9afa6
10 changed files with 43 additions and 469 deletions
|
@ -57,7 +57,7 @@ static void PicoSVPReset(void)
|
|||
memcpy(svp->iram_rom + 0x800, Pico.rom + 0x800, 0x20000 - 0x800);
|
||||
ssp1601_reset(&svp->ssp1601);
|
||||
#ifdef _SVP_DRC
|
||||
if ((PicoOpt&POPT_EN_SVP_DRC) && svp_dyn_ready)
|
||||
if ((PicoOpt & POPT_EN_DRC) && svp_dyn_ready)
|
||||
ssp1601_dyn_reset(&svp->ssp1601);
|
||||
#endif
|
||||
}
|
||||
|
@ -77,7 +77,7 @@ static void PicoSVPLine(void)
|
|||
#endif
|
||||
|
||||
#ifdef _SVP_DRC
|
||||
if ((PicoOpt&POPT_EN_SVP_DRC) && svp_dyn_ready)
|
||||
if ((PicoOpt & POPT_EN_DRC) && svp_dyn_ready)
|
||||
ssp1601_dyn_run(PicoSVPCycles * count);
|
||||
else
|
||||
#endif
|
||||
|
@ -151,7 +151,7 @@ void PicoSVPStartup(void)
|
|||
// init SVP compiler
|
||||
svp_dyn_ready = 0;
|
||||
#ifdef _SVP_DRC
|
||||
if (PicoOpt & POPT_EN_SVP_DRC) {
|
||||
if (PicoOpt & POPT_EN_DRC) {
|
||||
if (ssp1601_dyn_startup())
|
||||
return;
|
||||
svp_dyn_ready = 1;
|
||||
|
|
|
@ -60,11 +60,11 @@ extern void *p32x_bios_g, *p32x_bios_m, *p32x_bios_s;
|
|||
#define POPT_EN_MCD_PCM (1<<10)
|
||||
#define POPT_EN_MCD_CDDA (1<<11)
|
||||
#define POPT_EN_MCD_GFX (1<<12) // 00 x000
|
||||
#define POPT_EN_MCD_PSYNC (1<<13)
|
||||
// unused (1<<13)
|
||||
#define POPT_EN_SOFTSCALE (1<<14)
|
||||
#define POPT_EN_MCD_RAMCART (1<<15)
|
||||
#define POPT_DIS_VDP_FIFO (1<<16) // 0x 0000
|
||||
#define POPT_EN_SVP_DRC (1<<17)
|
||||
#define POPT_EN_DRC (1<<17)
|
||||
#define POPT_DIS_SPRITE_LIM (1<<18)
|
||||
#define POPT_DIS_IDLE_DET (1<<19)
|
||||
#define POPT_EN_32X (1<<20)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue