more wip SVP code
authornotaz <notasas@gmail.com>
Sat, 22 Dec 2007 20:53:09 +0000 (20:53 +0000)
committernotaz <notasas@gmail.com>
Sat, 22 Dec 2007 20:53:09 +0000 (20:53 +0000)
git-svn-id: file:///home/notaz/opt/svn/PicoDrive@318 be3aeb3a-fb24-0410-a615-afba39da0efa

13 files changed:
Pico/Cart.c
Pico/Memory.c
Pico/MemoryCmn.c
Pico/Pico.c
Pico/PicoInt.h
Pico/VideoPort.c
Pico/carthw/carthw.h
Pico/carthw/svp/Memory.c
Pico/carthw/svp/ssp16.c [new file with mode: 0644]
Pico/carthw/svp/ssp16.h [new file with mode: 0644]
Pico/carthw/svp/svp.c
platform/linux/Makefile
platform/linux/port_config.h

index 34a497e..7c3f36d 100644 (file)
@@ -481,7 +481,7 @@ int PicoCartLoad(pm_file *f,unsigned char **prom,unsigned int *psize)
   return 0;\r
 }\r
 \r
-// Insert/remove a cartridge:\r
+// Insert a cartridge:\r
 int PicoCartInsert(unsigned char *rom,unsigned int romsize)\r
 {\r
   // notaz: add a 68k "jump one op back" opcode to the end of ROM.\r
@@ -493,15 +493,19 @@ int PicoCartInsert(unsigned char *rom,unsigned int romsize)
   Pico.rom=rom;\r
   Pico.romsize=romsize;\r
 \r
+  PicoMemResetHooks();\r
+  PicoDmaHook = NULL;\r
+  PicoResetHook = NULL;\r
+\r
+  if (!(PicoMCD & 1))\r
+    PicoCartDetect();\r
+\r
   // setup correct memory map for loaded ROM\r
   if (PicoMCD & 1)\r
        PicoMemSetupCD();\r
   else PicoMemSetup();\r
   PicoMemReset();\r
 \r
-  if (!(PicoMCD & 1))\r
-    PicoCartDetect();\r
-\r
   return PicoReset(1);\r
 }\r
 \r
@@ -637,8 +641,6 @@ void PicoCartDetect(void)
   if (name_cmp("Virtua Racing") == 0)\r
   {\r
     PicoSVPInit();\r
-    PicoRead16Hook = PicoSVPRead16;\r
-    PicoWrite8Hook = PicoSVPWrite8;\r
   }\r
 }\r
 \r
index f9d7f69..48c32a6 100644 (file)
@@ -317,7 +317,6 @@ static void OtherWrite8End(u32 a,u32 d,int realsize)
     Pico.m.prot_bytes[(a>>2)&1] = (u8)d;\r
 }\r
 \r
-\r
 #include "MemoryCmn.c"\r
 \r
 \r
@@ -498,15 +497,26 @@ static void PicoWrite32(u32 a,u32 d)
 // -----------------------------------------------------------------\r
 \r
 // TODO: asm code\r
-u32  (*PicoRead16Hook)(u32 a, int realsize) = OtherRead16End;\r
-void (*PicoWrite8Hook)(u32 a, u32 d, int realsize) = OtherWrite8End;\r
+static void OtherWrite16End(u32 a,u32 d,int realsize)\r
+{\r
+  PicoWrite8Hook(a,  d>>8, realsize);\r
+  PicoWrite8Hook(a+1,d&0xff, realsize);\r
+}\r
 \r
-PICO_INTERNAL void PicoMemSetup(void)\r
+u32  (*PicoRead16Hook) (u32 a, int realsize) = OtherRead16End;\r
+void (*PicoWrite8Hook) (u32 a, u32 d, int realsize) = OtherWrite8End;\r
+void (*PicoWrite16Hook)(u32 a, u32 d, int realsize) = OtherWrite16End;\r
+\r
+PICO_INTERNAL void PicoMemResetHooks(void)\r
 {\r
   // default unmapped/cart specific handlers\r
   PicoRead16Hook = OtherRead16End;\r
   PicoWrite8Hook = OtherWrite8End;\r
+  PicoWrite16Hook = OtherWrite16End;\r
+}\r
 \r
+PICO_INTERNAL void PicoMemSetup(void)\r
+{\r
   // Setup memory callbacks:\r
 #ifdef EMU_C68K\r
   PicoCpuCM68k.checkpc=PicoCheckPc;\r
index 422ae2e..dd705c0 100644 (file)
@@ -229,8 +229,6 @@ void OtherWrite16(u32 a,u32 d)
   }
 #endif
 
-  PicoWrite8Hook(a,  d>>8, 16);
-  PicoWrite8Hook(a+1,d&0xff, 16);
+  PicoWrite16Hook(a, d, 16);
 }
 
-
index 9ad226d..bb0f6e5 100644 (file)
@@ -17,7 +17,8 @@ int PicoSkipFrame=0; // skip rendering frame?
 int PicoRegionOverride = 0; // override the region detection 0: Auto, 1: Japan NTSC, 2: Japan PAL, 4: US, 8: Europe\r
 int PicoAutoRgnOrder = 0;\r
 int emustatus = 0; // rapid_ym2612, multi_ym_updates\r
-void (*PicoWriteSound)(int len) = 0; // called once per frame at the best time to send sound buffer (PsndOut) to hardware\r
+void (*PicoWriteSound)(int len) = NULL; // called at the best time to send sound buffer (PsndOut) to hardware\r
+void (*PicoResetHook)(void) = NULL;\r
 \r
 struct PicoSRAM SRam = {0,};\r
 int z80startCycle, z80stopCycle; // in 68k cycles\r
@@ -139,6 +140,8 @@ int PicoReset(int hard)
 \r
   PsndReset(); // pal must be known here\r
 \r
+  if (PicoResetHook) PicoResetHook();\r
+\r
   if (PicoMCD & 1) {\r
     PicoResetMCD(hard);\r
     return 0;\r
index b84ec1a..bd10f19 100644 (file)
@@ -385,6 +385,7 @@ PICO_INTERNAL int PicoInitPc(unsigned int pc);
 PICO_INTERNAL_ASM unsigned int PicoRead32(unsigned int a);\r
 PICO_INTERNAL void PicoMemSetup(void);\r
 PICO_INTERNAL_ASM void PicoMemReset(void);\r
+PICO_INTERNAL void PicoMemResetHooks(void);\r
 PICO_INTERNAL int PadRead(int i);\r
 PICO_INTERNAL unsigned char z80_read(unsigned short a);\r
 #ifndef _USE_CZ80\r
@@ -395,7 +396,8 @@ PICO_INTERNAL unsigned short z80_read16(unsigned short a);
 PICO_INTERNAL_ASM void z80_write(unsigned int a, unsigned char data);\r
 #endif\r
 extern unsigned int (*PicoRead16Hook)(unsigned int a, int realsize);\r
-extern void (*PicoWrite8Hook)(unsigned int a,unsigned int d,int realsize);\r
+extern void (*PicoWrite8Hook) (unsigned int a,unsigned int d,int realsize);\r
+extern void (*PicoWrite16Hook)(unsigned int a,unsigned int d,int realsize);\r
 \r
 // cd/Memory.c\r
 PICO_INTERNAL void PicoMemSetupCD(void);\r
@@ -407,6 +409,7 @@ extern struct Pico Pico;
 extern struct PicoSRAM SRam;\r
 extern int emustatus;\r
 extern int z80startCycle, z80stopCycle; // in 68k cycles\r
+extern void (*PicoResetHook)(void);\r
 PICO_INTERNAL int CheckDMA(void);\r
 \r
 // cd/Pico.c\r
@@ -433,6 +436,7 @@ extern int PsndLen_exc_add;
 // VideoPort.c\r
 PICO_INTERNAL_ASM void PicoVideoWrite(unsigned int a,unsigned short d);\r
 PICO_INTERNAL_ASM unsigned int PicoVideoRead(unsigned int a);\r
+extern int (*PicoDmaHook)(unsigned int source, unsigned short **srcp, unsigned short **limitp);\r
 \r
 // Misc.c\r
 PICO_INTERNAL void SRAMWriteEEPROM(unsigned int d);\r
index 5840bc7..1065618 100644 (file)
@@ -22,6 +22,7 @@ typedef unsigned int   u32;
 #define UTYPES_DEFINED\r
 #endif\r
 \r
+int (*PicoDmaHook)(unsigned int source, unsigned short **srcp, unsigned short **limitp) = NULL;\r
 \r
 static __inline void AutoIncrement(void)\r
 {\r
@@ -104,7 +105,7 @@ static void DmaSlow(int len)
   if ((source&0xe00000)==0xe00000) { // Ram\r
     pd=(u16 *)(Pico.ram+(source&0xfffe));\r
     pdend=(u16 *)(Pico.ram+0x10000);\r
-  } else if(PicoMCD & 1) {\r
+  } else if (PicoMCD & 1) {\r
     elprintf(EL_VDPDMA, "DmaSlow CD, r3=%02x", Pico_mcd->s68k_regs[3]);\r
     if(source<0x20000) { // Bios area\r
       pd=(u16 *)(Pico_mcd->bios+(source&~1));\r
@@ -133,10 +134,12 @@ static void DmaSlow(int len)
       return;\r
     }\r
   } else {\r
-    if(source<Pico.romsize) { // Rom\r
+    if (source<Pico.romsize) { // Rom\r
       pd=(u16 *)(Pico.rom+(source&~1));\r
       pdend=(u16 *)(Pico.rom+Pico.romsize);\r
-    } else {\r
+    }\r
+    else if (PicoDmaHook && PicoDmaHook(source, &pd, &pdend));\r
+    else {\r
       elprintf(EL_VDPDMA|EL_ANOMALY, "DmaSlow[%i] %06x->%04x: invalid src", Pico.video.type, source, a);\r
       return;\r
     }\r
index e066cac..32c390e 100644 (file)
@@ -1,8 +1,21 @@
 
-
 /* svp */
+#include "svp/ssp16.h"
+
+typedef struct {
+       unsigned char ram[0x20000];
+       // TODO: IRAM?
+       ssp1601_t ssp1601;
+} svp_t;
+
+extern svp_t *svp;
+
 void PicoSVPInit(void);
+void PicoSVPReset(void);
 
 unsigned int PicoSVPRead16(unsigned int a, int realsize);
-void PicoSVPWrite8(unsigned int a,unsigned int d,int realsize);
+void PicoSVPWrite8 (unsigned int a, unsigned int d, int realsize);
+void PicoSVPWrite16(unsigned int a, unsigned int d, int realsize);
+
+int PicoSVPDma(unsigned int source, unsigned short **srcp, unsigned short **limitp);
 
index 0462d7f..84d942c 100644 (file)
@@ -1,16 +1,53 @@
 #include "../../PicoInt.h"
 
+#ifndef UTYPES_DEFINED
+typedef unsigned char  u8;
+typedef unsigned short u16;
+typedef unsigned int   u32;
+#define UTYPES_DEFINED
+#endif
+
+#define CLEAR_DETECT(pc_start,pc_end,text) \
+  if (d == 0 && SekPc >= pc_start && SekPc < pc_end) \
+  { \
+    if (!clearing_ram) \
+      elprintf(EL_UIO, text); \
+    clearing_ram = 1; \
+    return; \
+  }
+
 unsigned int PicoSVPRead16(unsigned int a, int realsize)
 {
   unsigned int d = 0;
 
+  if ((a & 0xfe0000) == 0x300000)
+    *(u16 *)(svp->ram + (a&0x1fffe)) = d;
+
   elprintf(EL_UIO, "SVP r%i: [%06x] %04x @%06x", realsize, a&0xffffff, d, SekPc);
 
+  // if (a == 0x30fe02) d = 1;
+
   return d;
 }
 
 void PicoSVPWrite8(unsigned int a, unsigned int d, int realsize)
 {
-  elprintf(EL_UIO, "SVP w%i: %06x, %08x @%06x", realsize, a&0xffffff, d, SekPc);
+  elprintf(EL_UIO, "!!! SVP w%i: [%06x], %08x @%06x", realsize, a&0xffffff, d, SekPc);
+}
+
+void PicoSVPWrite16(unsigned int a, unsigned int d, int realsize)
+{
+  static int clearing_ram = 0;
+
+  if ((a & 0xfe0000) == 0x300000)
+    *(u16 *)(svp->ram + (a&0x1fffe)) = d;
+
+  // debug: detect RAM clears..
+  CLEAR_DETECT(0x0221dc, 0x0221f0, "SVP RAM CLEAR (1)");
+  CLEAR_DETECT(0x02204c, 0x022068, "SVP RAM CLEAR (2)");
+  CLEAR_DETECT(0x021900, 0x021ff0, "SVP RAM CLEAR 300000-305fff");
+  clearing_ram = 0;
+
+  elprintf(EL_UIO, "SVP w%i: [%06x], %04x @%06x", realsize, a&0xffffff, d, SekPc);
 }
 
diff --git a/Pico/carthw/svp/ssp16.c b/Pico/carthw/svp/ssp16.c
new file mode 100644 (file)
index 0000000..7ac1467
--- /dev/null
@@ -0,0 +1,215 @@
+// basic, incomplete SSP160x (SSP1601?) interpreter
+
+/*
+ * Register info
+ * most names taken from MAME code
+ *
+ * 0. "-"
+ *   size: 16
+ *   desc: Constant register with all bits set (0xffff).
+ *
+ * 1. "X"
+ *   size: 16
+ *   desc: Generic register. When set, updates P (P = X * Y * 2) ??
+ *
+ * 2. "Y"
+ *   size: 16
+ *   desc: Generic register. When set, updates P (P = X * Y * 2) ??
+ *
+ * 3. "A"
+ *   size: 32
+ *   desc: Accumulator.
+ *
+ * 4. "ST"
+ *   size: 16
+ *   desc: Status register. From MAME: bits 0-9 are CONTROL, other FLAG
+ *     fedc ba98 7654 3210
+ *       210 - RPL (?)       (e: "loop size", fir16_32.sc)
+ *       43  - RB (?)
+ *       5   - GP0_0 (ST5?)  Changed before acessing AL (affects banking?).
+ *       6   - GP0_1 (ST6?)  Cleared before acessing AL (affects banking?). Set after.
+ *       7   - IE (?)        Not used by SVP code (never set, but preserved)?
+ *       8   - OP (?)        Not used by SVP code (only cleared)?
+ *       9   - MACS (?)      Not used by SVP code (only cleared)? (e: "mac shift")
+ *       a   - GPI_0         Interrupt 0 enable/status?
+ *       b   - GPI_1         Interrupt 1 enable/status?
+ *       c   - L             L flag. Carry?
+ *       d   - Z             Zero flag.
+ *       e   - OV            Overflow flag.
+ *       f   - N             Negative flag.
+ *     seen directly changing code sequences:
+ *       ldi ST, 0      ld  A, ST     ld  A, ST     ld  A, ST     ldi st, 20h
+ *       ldi ST, 60h    ori A, 60h    and A, E8h    and A, E8h
+ *                      ld  ST, A     ld  ST, A     ori 3
+ *                                                  ld  ST, A
+ *
+ * 5. "STACK"
+ *   size: 16
+ *   desc: hw stack of 6 levels (according to datasheet)
+ *
+ * 6. "PC"
+ *   size: 16
+ *   desc: Program counter.
+ *
+ * 7. "P"
+ *   size: 32
+ *   desc: multiply result register. Updated after mp* instructions,
+ *         or writes to X or Y (P = X * Y * 2) ??
+ *         probably affected by MACS bit in ST.
+ *
+ * 8. "PM0" (PM from PMAR name from Tasco's docs)
+ *   size: 16?
+ *   desc: Programmable Memory access register.
+ *         On reset, or when one (both?) GP0 bits are clear,
+ *         acts as some additional status reg?
+ *
+ * 9. "PM1"
+ *   size: 16?
+ *   desc: Programmable Memory access register.
+ *         This reg. is only used as PMAR.
+ *
+ * 10. "PM2"
+ *   size: 16?
+ *   desc: Programmable Memory access register.
+ *         This reg. is only used as PMAR.
+ *
+ * 11. "XST"
+ *   size: 16?
+ *   desc: eXternal STate. Mapped to a15000 at 68k side.
+ *         Can be programmed as PMAR? (only seen in test mode code)
+ *
+ * 12. "PM4"
+ *   size: 16?
+ *   desc: Programmable Memory access register.
+ *         This reg. is only used as PMAR. The most used PMAR by VR.
+ *
+ * 13. (unused by VR)
+ *
+ * 14. "PMC" (PMC from PMAC name from Tasco's docs)
+ *   size: 32?
+ *   desc: Programmable Memory access Control. Set using 2 16bit writes,
+ *         first address, then mode word. After setting PMAC, PMAR sould
+ *         be accessed to program it.
+ *
+ * 15. "AL"
+ *   size: 16
+ *   desc: Accumulator Low. 16 least significant bits of accumulator (not 100% sure)
+ *         (normally reading acc (ld X, A) you get 16 most significant bits).
+ *
+ *
+ * There are 8 8-bit pointer registers rX. r0-r3 (ri) point to RAM0, r4-r7 (rj) point to RAM1.
+ * They can be accessed directly, or 2 indirection levels can be used [ (r0), ((r0)) ],
+ * which work similar to * and ** operators in C.
+ *
+ * r0,r1,r2,r4,r5,r6 can be modified [ex: ldi r0, 5].
+ * 3 modifiers can be applied (optional):
+ *  + : post-increment [ex: ld a, (r0+) ]
+ *  - : post-decrement
+ *  +!: same as '+' ???
+ *
+ * r3 and r7 are special and can not be changed (at least Samsung samples and SVP code never do).
+ * They are fixed to the start of their RAM banks. (They are probably changeable for ssp1605+,
+ * Samsung's old DSP page claims that).
+ * 1 of these 4 modifiers must be used (short form direct addressing?):
+ *  |00: RAMx[0] [ex: (r3|00), 0] (based on sample code)
+ *  |01: RAMx[1]
+ *  |10: RAMx[2] ? maybe 10h? accortding to Div_c_dp.sc, 2
+ *  |11: RAMx[3]
+ *
+ *
+ * Instruction notes
+ *
+ * mld (rj), (ri) [, b]
+ *   operation: A = 0; P = (rj) * (ri)
+ *   notes: based on IIR_4B.SC sample. flags? what is b???
+ *   TODO: figure out if (rj) and (ri) get loaded in X and Y
+ *
+ * mpya (rj), (ri) [, b]
+ *   name: multiply and add?
+ *   operation: A += P; P = (rj) * (ri)
+ *
+ * mpys (rj), (ri), b
+ *   name: multiply and subtract?
+ *   notes: not used by VR code.
+ */
+
+#include "../../PicoInt.h"
+
+#define rX     ssp->gr[SSP_X].l
+#define rY     ssp->gr[SSP_Y].l
+#define rA     ssp->gr[SSP_A]          // 4
+#define rST    ssp->gr[SSP_ST].l
+#define rSTACK ssp->gr[SSP_STACK].l
+#define rPC    ssp->gr[SSP_PC].l
+#define rP     ssp->gr[SSP_P]          // 8
+#define rPM0   ssp->gr[SSP_PM0].l
+#define rPM1   ssp->gr[SSP_PM1].l
+#define rPM2   ssp->gr[SSP_PM2].l
+#define rXST   ssp->gr[SSP_XST].l      // 12
+#define rPM4   ssp->gr[SSP_PM4].l      // 14
+#define rPMC   ssp->gr[SSP_PMC].l
+#define rAL    ssp->gr[SSP_A].l
+
+#define GET_PC() (PC - (unsigned short *)Pico.rom)
+#define SET_PC() PC = (unsigned short *)Pico.rom + rPC
+
+void ssp1601_reset(ssp1601_t *ssp)
+{
+       ssp->emu_status = 0;
+       ssp->gr[SSP_GR0].v = 0xffff;
+       rPC = 0x400;
+       rSTACK = 5; // ?
+}
+
+
+void ssp1601_run(ssp1601_t *ssp, int cycles)
+{
+       unsigned short *PC;
+       int op;
+
+       SET_PC();
+
+       while (cycles > 0)
+       {
+               op = *PC;
+               switch (op >> 9)
+               {
+                       // ld d, s
+                       case 0:
+                       {
+                               int s, d, opdata = 0;
+                               if (op == 0) break; // nop
+                               s =  op & 0x0f;
+                               d = (op & 0xf0) >> 4;
+                               if (s == SSP_A || s == SSP_P) opdata |= 1; // src is 32bit
+                               if (d == SSP_A || d == SSP_P) opdata |= 2; // dst is 32bit
+                               if (s == SSP_STACK) opdata |= 4; // src is stack
+                               if (d == SSP_STACK) opdata |= 8; // dst is stack
+                               switch (opdata)
+                               {
+                                       case 0x0: ssp->gr[d].l = ssp->gr[s].l; break; // 16 <- 16
+                                       case 0x1: ssp->gr[d].l = ssp->gr[s].h; break; // 16 <- 32
+                                       case 0x2: ssp->gr[d].h = ssp->gr[s].l; break; // 32 <- 16
+                                                 // TODO: MAME claims that only hi word is transfered. Go figure.
+                                       case 0x3: ssp->gr[d].v = ssp->gr[s].v; break; // 32 <- 32
+                                       case 0x4: ; // TODO
+                               }
+                               if (d == SSP_PC)
+                               {
+                                       SET_PC();
+                                       cycles--;
+                               }
+                               break;
+                       }
+
+                       default:
+                       elprintf(0xffff, "ssp: unhandled op %04x @ %04x", op, GET_PC()<<1);
+                       break;
+               }
+               cycles--;
+               PC++;
+       }
+
+       rPC = GET_PC();
+}
+
diff --git a/Pico/carthw/svp/ssp16.h b/Pico/carthw/svp/ssp16.h
new file mode 100644 (file)
index 0000000..c2a4060
--- /dev/null
@@ -0,0 +1,46 @@
+
+// register names
+enum {
+       SSP_GR0, SSP_X,     SSP_Y,   SSP_A,
+       SSP_ST,  SSP_STACK, SSP_PC,  SSP_P,
+       SSP_PM0, SSP_PM1,   SSP_PM2, SSP_XST,
+       SSP_PM4, SSP_gr13,  SSP_PMC, SSP_AL
+};
+
+typedef union
+{
+       unsigned int v;
+       struct {
+               unsigned short l;
+               unsigned short h;
+       };
+} ssp_reg_t;
+
+typedef struct
+{
+       union {
+               unsigned short RAM[256*2];      // 2 internal RAM banks
+               struct {
+                       unsigned short RAM0[256];
+                       unsigned short RAM1[256];
+               };
+       };
+       ssp_reg_t gr[16];       // general registers
+       union {
+               unsigned char r[8];     // BANK pointers
+               struct {
+                       unsigned char r0[4];
+                       unsigned char r1[4];
+               };
+       };
+       unsigned short stack[6];
+       //
+       #define SSP_PMC_HAVE_ADDR 1     // address written to PMAC, waiting for mode
+       unsigned int emu_status;
+       unsigned int pad[10];
+} ssp1601_t;
+
+
+void ssp1601_reset(ssp1601_t *ssp);
+void ssp1601_run(ssp1601_t *ssp, int cycles);
+
index a5de987..79ea68d 100644 (file)
@@ -1,7 +1,51 @@
 #include "../../PicoInt.h"
 
+svp_t *svp = NULL;
+
 void PicoSVPInit(void)
 {
-  elprintf(0xffff, "SVP");
+       void *tmp;
+
+       elprintf(0xffff, "SVP init");
+
+       tmp = realloc(Pico.rom, 0x200000 + sizeof(*svp));
+       if (tmp == NULL)
+       {
+               elprintf(EL_STATUS, "OOM for SVP data");
+               return;
+       }
+
+       Pico.rom = tmp;
+       svp = (void *) ((char *)tmp + 0x200000);
+       memset(svp, 0, sizeof(*svp));
+
+       // init ok, setup hooks..
+       PicoRead16Hook = PicoSVPRead16;
+       PicoWrite8Hook = PicoSVPWrite8;
+       PicoWrite16Hook = PicoSVPWrite16;
+       PicoDmaHook = PicoSVPDma;
+}
+
+
+void PicoSVPReset(void)
+{
+       elprintf(0xffff, "SVP reset");
+
+       ssp1601_reset(&svp->ssp1601);
+}
+
+
+int PicoSVPDma(unsigned int source, unsigned short **srcp, unsigned short **limitp)
+{
+       if ((source & 0xfe0000) == 0x300000)
+       {
+               elprintf(EL_VDPDMA|0xffff, "SVP DmaSlow from %06x", source);
+               source &= 0x1fffe;
+               *srcp = (unsigned short *)(svp->ram + source);
+               *limitp = (unsigned short *)(svp->ram + sizeof(svp->ram));
+               return 1;
+       }
+
+       return 0;
 }
 
index 66e44da..f11e010 100644 (file)
@@ -44,7 +44,7 @@ OBJS += Pico/cd/Pico.o Pico/cd/Memory.o Pico/cd/Sek.o Pico/cd/LC89510.o \
 # Pico - sound
 OBJS += Pico/sound/sound.o Pico/sound/sn76496.o Pico/sound/ym2612.o Pico/sound/mix.o
 # Pico - carthw
-OBJS += Pico/carthw/svp/svp.o Pico/carthw/svp/Memory.o
+OBJS += Pico/carthw/svp/svp.o Pico/carthw/svp/Memory.o Pico/carthw/svp/ssp16.o
 # zlib
 OBJS += zlib/gzio.o zlib/inffast.o zlib/inflate.o zlib/inftrees.o zlib/trees.o \
        zlib/deflate.o zlib/crc32.o zlib/adler32.o zlib/zutil.o zlib/compress.o zlib/uncompr.o
index 2f897b9..d26636a 100644 (file)
@@ -14,7 +14,7 @@
 
 #define mix_32_to_16l_stereo_lvl mix_32_to_16l_stereo
 
-#define EL_LOGMASK (EL_ANOMALY|EL_STATUS|EL_SRAMIO|EL_EEPROM|EL_UIO) // EL_VDPDMA|EL_ASVDP|EL_SR) // |EL_BUSREQ|EL_Z80BNK)
+#define EL_LOGMASK (EL_ANOMALY|EL_STATUS|EL_SRAMIO|EL_EEPROM|EL_UIO|EL_VDPDMA) // EL_VDPDMA|EL_ASVDP|EL_SR) // |EL_BUSREQ|EL_Z80BNK)
 
 //#define dprintf(f,...) printf("%05i:%03i: " f "\n",Pico.m.frame_count,Pico.m.scanline,##__VA_ARGS__)
 #define dprintf(x...)