X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=pico%2Fcarthw%2Fsvp%2Fsvp.c;h=1bccb3f6c6236720de46cf7b7d3d368a1d3511ef;hb=ebf923683facb316a0e9fc8d26a7a0b4e4bacbfc;hp=38e7a4f5ba929935f7b07d315f6815e5b3abea29;hpb=d4d626658a7a999f48009f408b4a22d280ab80ea;p=picodrive.git diff --git a/pico/carthw/svp/svp.c b/pico/carthw/svp/svp.c index 38e7a4f..1bccb3f 100644 --- a/pico/carthw/svp/svp.c +++ b/pico/carthw/svp/svp.c @@ -26,8 +26,8 @@ * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ -#include "../../pico_int.h" -#include "../../cpu/drc/cmn.h" +#include +#include #include "compiler.h" svp_t *svp = NULL; @@ -56,8 +56,8 @@ static void PicoSVPReset(void) memcpy(svp->iram_rom + 0x800, Pico.rom + 0x800, 0x20000 - 0x800); ssp1601_reset(&svp->ssp1601); -#ifdef __arm__ - if ((PicoOpt&POPT_EN_SVP_DRC) && svp_dyn_ready) +#ifdef _SVP_DRC + if ((PicoOpt & POPT_EN_DRC) && svp_dyn_ready) ssp1601_dyn_reset(&svp->ssp1601); #endif } @@ -76,8 +76,8 @@ static void PicoSVPLine(void) delay_lines = 0; #endif -#ifdef __arm__ - if ((PicoOpt&POPT_EN_SVP_DRC) && svp_dyn_ready) +#ifdef _SVP_DRC + if ((PicoOpt & POPT_EN_DRC) && svp_dyn_ready) ssp1601_dyn_run(PicoSVPCycles * count); else #endif @@ -118,7 +118,7 @@ static int PicoSVPDma(unsigned int source, int len, unsigned short **srcp, unsig void PicoSVPInit(void) { -#ifdef __arm__ +#ifdef _SVP_DRC // this is to unmap tcache and make // mem available for large ROMs, MCD, etc. drc_cmn_cleanup(); @@ -127,7 +127,7 @@ void PicoSVPInit(void) static void PicoSVPExit(void) { -#ifdef __arm__ +#ifdef _SVP_DRC ssp1601_dyn_exit(); #endif } @@ -150,8 +150,8 @@ void PicoSVPStartup(void) // init SVP compiler svp_dyn_ready = 0; -#ifdef __arm__ - if (PicoOpt & POPT_EN_SVP_DRC) { +#ifdef _SVP_DRC + if (PicoOpt & POPT_EN_DRC) { if (ssp1601_dyn_startup()) return; svp_dyn_ready = 1;