mirror of
https://github.com/RaySollium99/picodrive.git
synced 2025-09-05 15:27:46 -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue