amalgamation
[picodrive.git] / Pico / Memory.c
index d3b6bee..01e92f4 100644 (file)
@@ -7,23 +7,25 @@
 // For commercial use, separate licencing terms must be obtained.\r
 \r
 \r
-//#define __debug_io\r
+#define __debug_io\r
 \r
 #include "PicoInt.h"\r
 \r
-#include "sound/sound.h"\r
 #include "sound/ym2612.h"\r
 #include "sound/sn76496.h"\r
 \r
+#ifndef UTYPES_DEFINED\r
 typedef unsigned char  u8;\r
 typedef unsigned short u16;\r
 typedef unsigned int   u32;\r
+#define UTYPES_DEFINED\r
+#endif\r
 \r
 extern unsigned int lastSSRamWrite; // used by serial SRAM code\r
 \r
 #ifdef _ASM_MEMORY_C\r
-u  PicoRead8(u32 a);\r
-u16  PicoRead16(u32 a);\r
+u32  PicoRead8(u32 a);\r
+u32  PicoRead16(u32 a);\r
 void PicoWriteRomHW_SSF2(u32 a,u32 d);\r
 void PicoWriteRomHW_in1 (u32 a,u32 d);\r
 #endif\r
@@ -69,9 +71,13 @@ static u32 CPU_CALL PicoCheckPc(u32 pc)
   u32 ret=0;\r
 #if defined(EMU_C68K)\r
   pc-=PicoCpu.membase; // Get real pc\r
-  pc&=0xfffffe;\r
+//  pc&=0xfffffe;\r
+  pc&=~1;\r
+  if ((pc<<8) == 0)\r
+    return (int)Pico.rom + Pico.romsize; // common crash condition, can happen if acc timing is off\r
 \r
-  PicoCpu.membase=PicoMemBase(pc);\r
+  PicoCpu.membase=PicoMemBase(pc&0x00ffffff);\r
+  PicoCpu.membase-=pc&0xff000000;\r
 \r
   ret = PicoCpu.membase+pc;\r
 #elif defined(EMU_A68K)\r
@@ -84,14 +90,14 @@ static u32 CPU_CALL PicoCheckPc(u32 pc)
 }\r
 \r
 \r
-int PicoInitPc(u32 pc)\r
+PICO_INTERNAL int PicoInitPc(u32 pc)\r
 {\r
   PicoCheckPc(pc);\r
   return 0;\r
 }\r
 \r
 #ifndef _ASM_MEMORY_C\r
-void PicoMemReset()\r
+PICO_INTERNAL_ASM void PicoMemReset(void)\r
 {\r
 }\r
 #endif\r
@@ -107,71 +113,12 @@ static int SRAMRead(u32 a)
 }\r
 #endif\r
 \r
-static int PadRead(int i)\r
-{\r
-  int pad=0,value=0,TH;\r
-  pad=~PicoPad[i]; // Get inverse of pad MXYZ SACB RLDU\r
-  TH=Pico.ioports[i+1]&0x40;\r
-\r
-  if(PicoOpt & 0x20) { // 6 button gamepad enabled\r
-    int phase = Pico.m.padTHPhase[i];\r
-\r
-    if(phase == 2 && !TH) {\r
-      value=(pad&0xc0)>>2;              // ?0SA 0000\r
-      goto end;\r
-    } else if(phase == 3 && TH) {\r
-      value=(pad&0x30)|((pad>>8)&0xf);  // ?1CB MXYZ\r
-      goto end;\r
-    } else if(phase == 3 && !TH) {\r
-      value=((pad&0xc0)>>2)|0x0f;       // ?0SA 1111\r
-      goto end;\r
-    }\r
-  }\r
-\r
-  if(TH) value=(pad&0x3f);              // ?1CB RLDU\r
-  else   value=((pad&0xc0)>>2)|(pad&3); // ?0SA 00DU\r
-\r
-  end:\r
-\r
-  // orr the bits, which are set as output\r
-  value |= Pico.ioports[i+1]&Pico.ioports[i+4];\r
-\r
-  return value; // will mirror later\r
-}\r
-\r
-u8 z80Read8(u32 a)\r
-{\r
-  if(Pico.m.z80Run&1) return 0;\r
-\r
-  a&=0x1fff;\r
-\r
-  if(!(PicoOpt&4)) {\r
-    // Z80 disabled, do some faking\r
-    static u8 zerosent = 0;\r
-    if(a == Pico.m.z80_lastaddr) { // probably polling something\r
-      u8 d = Pico.m.z80_fakeval;\r
-      if((d & 0xf) == 0xf && !zerosent) {\r
-        d = 0; zerosent = 1;\r
-      } else {\r
-        Pico.m.z80_fakeval++;\r
-        zerosent = 0;\r
-      }\r
-      return d;\r
-    } else {\r
-      Pico.m.z80_fakeval = 0;\r
-    }\r
-  }\r
-\r
-  Pico.m.z80_lastaddr = (u16) a;\r
-  return Pico.zram[a];\r
-}\r
-\r
 \r
 // for nonstandard reads\r
 #ifndef _ASM_MEMORY_C\r
 static\r
 #endif\r
-u32 UnusualRead16(u32 a, int realsize)\r
+u32 OtherRead16End(u32 a, int realsize)\r
 {\r
   u32 d=0;\r
 \r
@@ -181,49 +128,49 @@ u32 UnusualRead16(u32 a, int realsize)
   // some dumb detection is used, but that should be enough to make things work\r
   if ((a>>22) == 1 && Pico.romsize >= 512*1024) {\r
     if      (*(int *)(Pico.rom+0x123e4) == 0x00550c39 && *(int *)(Pico.rom+0x123e8) == 0x00000040) { // Super Bubble Bobble (Unl) [!]\r
-         if      (a == 0x400000) { d=0x55<<8; goto end; }\r
-         else if (a == 0x400002) { d=0x0f<<8; goto end; }\r
-       }\r
-       else if (*(int *)(Pico.rom+0x008c4) == 0x66240055 && *(int *)(Pico.rom+0x008c8) == 0x00404df9) { // Smart Mouse (Unl)\r
-         if      (a == 0x400000) { d=0x55<<8; goto end; }\r
-         else if (a == 0x400002) { d=0x0f<<8; goto end; }\r
-         else if (a == 0x400004) { d=0xaa<<8; goto end; }\r
-         else if (a == 0x400006) { d=0xf0<<8; goto end; }\r
-       }\r
-       else if (*(int *)(Pico.rom+0x00404) == 0x00a90600 && *(int *)(Pico.rom+0x00408) == 0x6708b013) { // King of Fighters '98, The (Unl) [!]\r
-         if      (a == 0x480000 || a == 0x4800e0 || a == 0x4824a0 || a == 0x488880) { d=0xaa<<8; goto end; }\r
-         else if (a == 0x4a8820) { d=0x0a<<8; goto end; }\r
-         // there is also a read @ 0x4F8820 which needs 0, but that is returned in default case\r
-       }\r
-       else if (*(int *)(Pico.rom+0x01b24) == 0x004013f9 && *(int *)(Pico.rom+0x01b28) == 0x00ff0000) { // Mahjong Lover (Unl) [!]\r
-         if      (a == 0x400000) { d=0x90<<8; goto end; }\r
-         else if (a == 0x401000) { d=0xd3<<8; goto end; } // this one doesn't seem to be needed, the code does 2 comparisons and only then\r
-                                                          // checks the result, which is of the above one. Left it just in case.\r
-       }\r
-       else if (*(int *)(Pico.rom+0x05254) == 0x0c3962d0 && *(int *)(Pico.rom+0x05258) == 0x00400055) { // Elf Wor (Unl)\r
-         if      (a == 0x400000) { d=0x55<<8; goto end; }\r
-         else if (a == 0x400004) { d=0xc9<<8; goto end; } // this check is done if the above one fails\r
-         else if (a == 0x400002) { d=0x0f<<8; goto end; }\r
-         else if (a == 0x400006) { d=0x18<<8; goto end; } // similar to above\r
-       }\r
+      if      (a == 0x400000) { d=0x55<<8; goto end; }\r
+      else if (a == 0x400002) { d=0x0f<<8; goto end; }\r
+    }\r
+    else if (*(int *)(Pico.rom+0x008c4) == 0x66240055 && *(int *)(Pico.rom+0x008c8) == 0x00404df9) { // Smart Mouse (Unl)\r
+      if      (a == 0x400000) { d=0x55<<8; goto end; }\r
+      else if (a == 0x400002) { d=0x0f<<8; goto end; }\r
+      else if (a == 0x400004) { d=0xaa<<8; goto end; }\r
+      else if (a == 0x400006) { d=0xf0<<8; goto end; }\r
+    }\r
+    else if (*(int *)(Pico.rom+0x00404) == 0x00a90600 && *(int *)(Pico.rom+0x00408) == 0x6708b013) { // King of Fighters '98, The (Unl) [!]\r
+      if      (a == 0x480000 || a == 0x4800e0 || a == 0x4824a0 || a == 0x488880) { d=0xaa<<8; goto end; }\r
+      else if (a == 0x4a8820) { d=0x0a<<8; goto end; }\r
+      // there is also a read @ 0x4F8820 which needs 0, but that is returned in default case\r
+    }\r
+    else if (*(int *)(Pico.rom+0x01b24) == 0x004013f9 && *(int *)(Pico.rom+0x01b28) == 0x00ff0000) { // Mahjong Lover (Unl) [!]\r
+      if      (a == 0x400000) { d=0x90<<8; goto end; }\r
+      else if (a == 0x401000) { d=0xd3<<8; goto end; } // this one doesn't seem to be needed, the code does 2 comparisons and only then\r
+                                                       // checks the result, which is of the above one. Left it just in case.\r
+    }\r
+    else if (*(int *)(Pico.rom+0x05254) == 0x0c3962d0 && *(int *)(Pico.rom+0x05258) == 0x00400055) { // Elf Wor (Unl)\r
+      if      (a == 0x400000) { d=0x55<<8; goto end; }\r
+      else if (a == 0x400004) { d=0xc9<<8; goto end; } // this check is done if the above one fails\r
+      else if (a == 0x400002) { d=0x0f<<8; goto end; }\r
+      else if (a == 0x400006) { d=0x18<<8; goto end; } // similar to above\r
+    }\r
     // our default behaviour is to return whatever was last written a 0x400000-0x7fffff range (used by Squirrel King (R) [!])\r
-       // Lion King II, The (Unl) [!]  writes @ 400000 and wants to get that val @ 400002 and wites another val\r
-       // @ 400004 which is expected @ 400006, so we really remember 2 values here\r
+    // Lion King II, The (Unl) [!]  writes @ 400000 and wants to get that val @ 400002 and wites another val\r
+    // @ 400004 which is expected @ 400006, so we really remember 2 values here\r
     d = Pico.m.prot_bytes[(a>>2)&1]<<8;\r
   }\r
   else if (a == 0xa13000 && Pico.romsize >= 1024*1024) {\r
     if      (*(int *)(Pico.rom+0xc8af0) == 0x30133013 && *(int *)(Pico.rom+0xc8af4) == 0x000f0240) { // Rockman X3 (Unl) [!]\r
-         d=0x0c; goto end;\r
-       }\r
+      d=0x0c; goto end;\r
+    }\r
     else if (*(int *)(Pico.rom+0x28888) == 0x07fc0000 && *(int *)(Pico.rom+0x2888c) == 0x4eb94e75) { // Bug's Life, A (Unl) [!]\r
-         d=0x28; goto end; // does the check from RAM\r
-       }\r
+      d=0x28; goto end; // does the check from RAM\r
+    }\r
     else if (*(int *)(Pico.rom+0xc8778) == 0x30133013 && *(int *)(Pico.rom+0xc877c) == 0x000f0240) { // Super Mario Bros. (Unl) [!]\r
-         d=0x0c; goto end; // seems to be the same code as in Rockman X3 (Unl) [!]\r
-       }\r
+      d=0x0c; goto end; // seems to be the same code as in Rockman X3 (Unl) [!]\r
+    }\r
     else if (*(int *)(Pico.rom+0xf20ec) == 0x30143013 && *(int *)(Pico.rom+0xf20f0) == 0x000f0200) { // Super Mario 2 1998 (Unl) [!]\r
-         d=0x0a; goto end;\r
-       }\r
+      d=0x0a; goto end;\r
+    }\r
   }\r
   else if (a == 0xa13002) { // Pocket Monsters (Unl)\r
     d=0x01; goto end;\r
@@ -233,7 +180,7 @@ u32 UnusualRead16(u32 a, int realsize)
   }\r
   else if (a == 0x30fe02) {\r
     // Virtua Racing - just for fun\r
-       // this seems to be some flag that SVP is ready or something similar\r
+    // this seems to be some flag that SVP is ready or something similar\r
     d=1; goto end;\r
   }\r
 \r
@@ -242,123 +189,41 @@ end:
   return d;\r
 }\r
 \r
-#ifndef _ASM_MEMORY_C\r
-static\r
-#endif\r
-u32 OtherRead16(u32 a, int realsize)\r
-{\r
-  u32 d=0;\r
-\r
-  if ((a&0xff0000)==0xa00000) {\r
-    if ((a&0x4000)==0x0000) { d=z80Read8(a); d|=d<<8; goto end; } // Z80 ram (not byteswaped)\r
-    if ((a&0x6000)==0x4000) { if(PicoOpt&1) d=YM2612Read(); else d=Pico.m.rotate++&3; goto end; } // 0x4000-0x5fff, Fudge if disabled\r
-       d=0xffff; goto end;\r
-  }\r
-  if ((a&0xffffe0)==0xa10000) { // I/O ports\r
-    a=(a>>1)&0xf;\r
-    switch(a) {\r
-      case 0:  d=Pico.m.hardware; break; // Hardware value (Version register)\r
-      case 1:  d=PadRead(0); d|=Pico.ioports[1]&0x80; break;\r
-      case 2:  d=PadRead(1); d|=Pico.ioports[2]&0x80; break;\r
-      default: d=Pico.ioports[a]; break; // IO ports can be used as RAM\r
-    }\r
-    d|=d<<8;\r
-    goto end;\r
-  }\r
-  // |=0x80 for Shadow of the Beast & Super Offroad; rotate fakes next fetched instruction for Time Killers\r
-  if (a==0xa11100) { d=((Pico.m.z80Run&1)<<8)|0x8000|Pico.m.rotate++; goto end; }\r
-\r
-#ifndef _ASM_MEMORY_C\r
-  if ((a&0xe700e0)==0xc00000) { d=PicoVideoRead(a); goto end; }\r
-#endif\r
-\r
-  d = UnusualRead16(a, realsize);\r
-\r
-end:\r
-  return d;\r
-}\r
 \r
 //extern UINT32 mz80GetRegisterValue(void *, UINT32);\r
 \r
-static void OtherWrite8(u32 a,u32 d,int realsize)\r
+static void OtherWrite8End(u32 a,u32 d,int realsize)\r
 {\r
-  if ((a&0xe700f9)==0xc00011||(a&0xff7ff9)==0xa07f11) { if(PicoOpt&2) SN76496Write(d); return; } // PSG Sound\r
-  if ((a&0xff4000)==0xa00000)  { if(!(Pico.m.z80Run&1)) Pico.zram[a&0x1fff]=(u8)d; return; } // Z80 ram\r
-  if ((a&0xff6000)==0xa04000)  { if(PicoOpt&1) emustatus|=YM2612Write(a&3, d); return; } // FM Sound\r
-  if ((a&0xffffe0)==0xa10000)  { // I/O ports\r
-    a=(a>>1)&0xf;\r
-    // 6 button gamepad: if TH went from 0 to 1, gamepad changes state\r
-    if(PicoOpt&0x20) {\r
-      if(a==1) {\r
-        Pico.m.padDelay[0] = 0;\r
-        if(!(Pico.ioports[1]&0x40) && (d&0x40)) Pico.m.padTHPhase[0]++;\r
-      }\r
-      else if(a==2) {\r
-        Pico.m.padDelay[1] = 0;\r
-        if(!(Pico.ioports[2]&0x40) && (d&0x40)) Pico.m.padTHPhase[1]++;\r
-      }\r
-    }\r
-    Pico.ioports[a]=(u8)d; // IO ports can be used as RAM\r
-    return;\r
-  }\r
-  if (a==0xa11100) {\r
-       extern int z80startCycle, z80stopCycle;\r
-    //int lineCycles=(488-SekCyclesLeft)&0x1ff;\r
-    d&=1; d^=1;\r
-       if(!d) {\r
-         // hack: detect a nasty situation where Z80 was enabled and disabled in the same 68k timeslice (Golden Axe III)\r
-      if((PicoOpt&4) && Pico.m.z80Run==1) z80_run(20);\r
-         z80stopCycle = SekCyclesDone();\r
-         //z80ExtraCycles += (lineCycles>>1)-(lineCycles>>5); // only meaningful in PicoFrameHints()\r
-       } else {\r
-         z80startCycle = SekCyclesDone();\r
-         //if(Pico.m.scanline != -1)\r
-         //z80ExtraCycles -= (lineCycles>>1)-(lineCycles>>5)+16;\r
-       }\r
-    //dprintf("set_zrun: %i [%i|%i] zPC=%04x @%06x", d, Pico.m.scanline, SekCyclesDone(), mz80GetRegisterValue(NULL, 0), SekPc);\r
-       Pico.m.z80Run=(u8)d; return;\r
-  }\r
-  if (a==0xa11200) { if(!(d&1)) z80_reset(); return; }\r
-\r
-  if ((a&0xff7f00)==0xa06000) // Z80 BANK register\r
-  {\r
-    Pico.m.z80_bank68k>>=1;\r
-    Pico.m.z80_bank68k|=(d&1)<<8;\r
-    Pico.m.z80_bank68k&=0x1ff; // 9 bits and filled in the new top one\r
-    return;\r
-  }\r
-\r
-  if ((a&0xe700e0)==0xc00000)  { PicoVideoWrite(a,(u16)(d|(d<<8))); return; } // Byte access gets mirrored\r
-\r
   // sram\r
   //if(a==0x200000) dprintf("cc : %02x @ %06x [%i|%i]", d, SekPc, SekCyclesDoneT(), SekCyclesDone());\r
   //if(a==0x200001) dprintf("w8 : %02x @ %06x [%i]", d, SekPc, SekCyclesDoneT());\r
   if(a >= SRam.start && a <= SRam.end) {\r
+    dprintf("sram w%i: %06x, %08x @%06x", realsize, a&0xffffff, d, SekPc);\r
     unsigned int sreg = Pico.m.sram_reg;\r
     if(!(sreg & 0x10)) {\r
-         // not detected SRAM\r
-         if((a&~1)==0x200000) {\r
+      // not detected SRAM\r
+      if((a&~1)==0x200000) {\r
         Pico.m.sram_reg|=4; // this should be a game with EEPROM (like NBA Jam)\r
         SRam.start=0x200000; SRam.end=SRam.start+1;\r
       }\r
-         Pico.m.sram_reg|=0x10;\r
-       }\r
+      Pico.m.sram_reg|=0x10;\r
+    }\r
     if(sreg & 4) { // EEPROM write\r
-         if(SekCyclesDoneT()-lastSSRamWrite < 46) {\r
-           // just update pending state\r
-               SRAMUpdPending(a, d);\r
-         } else {\r
-           SRAMWriteEEPROM(sreg>>6); // execute pending\r
-               SRAMUpdPending(a, d);\r
+      if(SekCyclesDoneT()-lastSSRamWrite < 46) {\r
+        // just update pending state\r
+        SRAMUpdPending(a, d);\r
+      } else {\r
+        SRAMWriteEEPROM(sreg>>6); // execute pending\r
+        SRAMUpdPending(a, d);\r
         lastSSRamWrite = SekCyclesDoneT();\r
-         }\r
+      }\r
     } else if(!(sreg & 2)) {\r
       u8 *pm=(u8 *)(SRam.data-SRam.start+a);\r
       if(*pm != (u8)d) {\r
         SRam.changed = 1;\r
         *pm=(u8)d;\r
       }\r
-       }\r
+    }\r
     return;\r
   }\r
 \r
@@ -371,7 +236,9 @@ static void OtherWrite8(u32 a,u32 d,int realsize)
 #else\r
   // sram access register\r
   if(a == 0xA130F1) {\r
-    Pico.m.sram_reg = (u8)(d&3);\r
+    dprintf("sram reg=%02x", d);\r
+    Pico.m.sram_reg &= ~3;\r
+    Pico.m.sram_reg |= (u8)(d&3);\r
     return;\r
   }\r
 #endif\r
@@ -379,12 +246,12 @@ static void OtherWrite8(u32 a,u32 d,int realsize)
 \r
   if(a >= 0xA13004 && a < 0xA13040) {\r
     // dumb 12-in-1 or 4-in-1 banking support\r
-       int len;\r
-       a &= 0x3f; a <<= 16;\r
-       len = Pico.romsize - a;\r
-       if (len <= 0) return; // invalid/missing bank\r
-       if (len > 0x200000) len = 0x200000; // 2 megs\r
-       memcpy(Pico.rom, Pico.rom+a, len); // code which does this is in RAM so this is safe.\r
+    int len;\r
+    a &= 0x3f; a <<= 16;\r
+    len = Pico.romsize - a;\r
+    if (len <= 0) return; // invalid/missing bank\r
+    if (len > 0x200000) len = 0x200000; // 2 megs\r
+    memcpy(Pico.rom, Pico.rom+a, len); // code which does this is in RAM so this is safe.\r
     return;\r
   }\r
 \r
@@ -393,39 +260,15 @@ static void OtherWrite8(u32 a,u32 d,int realsize)
     Pico.m.prot_bytes[(a>>2)&1] = (u8)d;\r
 }\r
 \r
-static void OtherWrite16(u32 a,u32 d)\r
-{\r
-  if ((a&0xe700e0)==0xc00000) { PicoVideoWrite(a,(u16)d); return; }\r
-  if ((a&0xff4000)==0xa00000) { if(!(Pico.m.z80Run&1)) Pico.zram[a&0x1fff]=(u8)(d>>8); return; } // Z80 ram (MSB only)\r
-\r
-  if ((a&0xffffe0)==0xa10000) { // I/O ports\r
-    a=(a>>1)&0xf;\r
-    // 6 button gamepad: if TH went from 0 to 1, gamepad changes state\r
-    if(PicoOpt&0x20) {\r
-      if(a==1) {\r
-        Pico.m.padDelay[0] = 0;\r
-        if(!(Pico.ioports[1]&0x40) && (d&0x40)) Pico.m.padTHPhase[0]++;\r
-      }\r
-      else if(a==2) {\r
-        Pico.m.padDelay[1] = 0;\r
-        if(!(Pico.ioports[2]&0x40) && (d&0x40)) Pico.m.padTHPhase[1]++;\r
-      }\r
-    }\r
-    Pico.ioports[a]=(u8)d; // IO ports can be used as RAM\r
-    return;\r
-  }\r
-  if (a==0xa11100) { OtherWrite8(a, d>>8, 16); return; }\r
-  if (a==0xa11200) { if(!(d&0x100)) z80_reset(); return; }\r
 \r
-  OtherWrite8(a,  d>>8, 16);\r
-  OtherWrite8(a+1,d&0xff, 16);\r
-}\r
+#include "MemoryCmn.c"\r
+\r
 \r
 // -----------------------------------------------------------------\r
 //                     Read Rom and read Ram\r
 \r
 #ifndef _ASM_MEMORY_C\r
-u8 CPU_CALL PicoRead8(u32 a)\r
+PICO_INTERNAL_ASM u32 CPU_CALL PicoRead8(u32 a)\r
 {\r
   u32 d=0;\r
 \r
@@ -438,8 +281,8 @@ u8 CPU_CALL PicoRead8(u32 a)
   if(a >= SRam.start && a <= SRam.end) {\r
     unsigned int sreg = Pico.m.sram_reg;\r
     if(!(sreg & 0x10) && (sreg & 1) && a > 0x200001) { // not yet detected SRAM\r
-         Pico.m.sram_reg|=0x10; // should be normal SRAM\r
-       }\r
+      Pico.m.sram_reg|=0x10; // should be normal SRAM\r
+    }\r
     if(sreg & 4) { // EEPROM read\r
       d = SRAMReadEEPROM();\r
       goto end;\r
@@ -468,17 +311,17 @@ u8 CPU_CALL PicoRead8(u32 a)
   dprintf("r8 : %06x,   %02x @%06x", a&0xffffff, (u8)d, SekPc);\r
 #endif\r
 #if defined(EMU_C68K) && defined(EMU_M68K)\r
-  if(a>=Pico.romsize&&(ppop&0x3f)!=0x3a&&(ppop&0x3f)!=0x3b) {\r
+  if(a>=Pico.romsize/*&&(ppop&0x3f)!=0x3a&&(ppop&0x3f)!=0x3b*/) {\r
     lastread_a = a;\r
     lastread_d[lrp_cyc++&15] = (u8)d;\r
   }\r
 #endif\r
-  return (u8)d;\r
+  return d;\r
 }\r
 \r
-u16 CPU_CALL PicoRead16(u32 a)\r
+PICO_INTERNAL_ASM u32 CPU_CALL PicoRead16(u32 a)\r
 {\r
-  u16 d=0;\r
+  u32 d=0;\r
 \r
   if ((a&0xe00000)==0xe00000) { d=*(u16 *)(Pico.ram+(a&0xfffe)); goto end; } // Ram\r
 \r
@@ -487,14 +330,14 @@ u16 CPU_CALL PicoRead16(u32 a)
 #if !(defined(EMU_C68K) && defined(EMU_M68K))\r
   // sram\r
   if(a >= SRam.start && a <= SRam.end && (Pico.m.sram_reg & 1)) {\r
-    d = (u16) SRAMRead(a);\r
+    d = SRAMRead(a);\r
     goto end;\r
   }\r
 #endif\r
 \r
   if (a<Pico.romsize) { d = *(u16 *)(Pico.rom+a); goto end; } // Rom\r
 \r
-  d = (u16)OtherRead16(a, 16);\r
+  d = OtherRead16(a, 16);\r
 \r
   end:\r
   //if ((a&0xe0ffff)==0xe0AF0E+0x69c||(a&0xe0ffff)==0xe0A9A8+0x69c||(a&0xe0ffff)==0xe0A9AA+0x69c||(a&0xe0ffff)==0xe0A9AC+0x69c)\r
@@ -504,7 +347,7 @@ u16 CPU_CALL PicoRead16(u32 a)
   dprintf("r16: %06x, %04x  @%06x", a&0xffffff, d, SekPc);\r
 #endif\r
 #if defined(EMU_C68K) && defined(EMU_M68K)\r
-  if(a>=Pico.romsize&&(ppop&0x3f)!=0x3a&&(ppop&0x3f)!=0x3b) {\r
+  if(a>=Pico.romsize/*&&(ppop&0x3f)!=0x3a&&(ppop&0x3f)!=0x3b*/) {\r
     lastread_a = a;\r
     lastread_d[lrp_cyc++&15] = d;\r
   }\r
@@ -512,7 +355,7 @@ u16 CPU_CALL PicoRead16(u32 a)
   return d;\r
 }\r
 \r
-u32 CPU_CALL PicoRead32(u32 a)\r
+PICO_INTERNAL_ASM u32 CPU_CALL PicoRead32(u32 a)\r
 {\r
   u32 d=0;\r
 \r
@@ -535,7 +378,7 @@ u32 CPU_CALL PicoRead32(u32 a)
   dprintf("r32: %06x, %08x @%06x", a&0xffffff, d, SekPc);\r
 #endif\r
 #if defined(EMU_C68K) && defined(EMU_M68K)\r
-  if(a>=Pico.romsize&&(ppop&0x3f)!=0x3a&&(ppop&0x3f)!=0x3b) {\r
+  if(a>=Pico.romsize/*&&(ppop&0x3f)!=0x3a&&(ppop&0x3f)!=0x3b*/) {\r
     lastread_a = a;\r
     lastread_d[lrp_cyc++&15] = d;\r
   }\r
@@ -558,14 +401,13 @@ static void CPU_CALL PicoWrite8(u32 a,u8 d)
   //if ((a&0xe0ffff)==0xe0a9ba+0x69c)\r
   //  dprintf("w8 : %06x,   %02x @%06x", a&0xffffff, d, SekPc);\r
 \r
-\r
-  if ((a&0xe00000)==0xe00000) { u8 *pm=(u8 *)(Pico.ram+((a^1)&0xffff)); pm[0]=d; return; } // Ram\r
+  if ((a&0xe00000)==0xe00000) { *(u8 *)(Pico.ram+((a^1)&0xffff))=d; return; } // Ram\r
 \r
   a&=0xffffff;\r
   OtherWrite8(a,d,8);\r
 }\r
 \r
-static void CPU_CALL PicoWrite16(u32 a,u16 d)\r
+void CPU_CALL PicoWrite16(u32 a,u16 d)\r
 {\r
 #ifdef __debug_io\r
   dprintf("w16: %06x, %04x", a&0xffffff, d);\r
@@ -606,7 +448,7 @@ static void CPU_CALL PicoWrite32(u32 a,u32 d)
 \r
 \r
 // -----------------------------------------------------------------\r
-int PicoMemInit()\r
+PICO_INTERNAL void PicoMemSetup(void)\r
 {\r
 #ifdef EMU_C68K\r
   // Setup memory callbacks:\r
@@ -618,7 +460,6 @@ int PicoMemInit()
   PicoCpu.write16=PicoWrite16;\r
   PicoCpu.write32=PicoWrite32;\r
 #endif\r
-  return 0;\r
 }\r
 \r
 #ifdef EMU_A68K\r
@@ -663,39 +504,78 @@ unsigned int  m68k_read_pcrelative_CD16(unsigned int a);
 unsigned int  m68k_read_pcrelative_CD32(unsigned int a);\r
 \r
 // these are allowed to access RAM\r
-unsigned int  m68k_read_pcrelative_8 (unsigned int a) {\r
+static unsigned int  m68k_read_8 (unsigned int a, int do_fake) {\r
   a&=0xffffff;\r
   if(PicoMCD&1) return m68k_read_pcrelative_CD8(a);\r
   if(a<Pico.romsize)         return *(u8 *)(Pico.rom+(a^1)); // Rom\r
+#ifdef EMU_C68K\r
+  if(do_fake&&((ppop&0x3f)==0x3a||(ppop&0x3f)==0x3b)) return lastread_d[lrp_mus++&15];\r
+#endif\r
   if((a&0xe00000)==0xe00000) return *(u8 *)(Pico.ram+((a^1)&0xffff)); // Ram\r
-  return 0;//(u8)  lastread_d;\r
+  return 0;\r
 }\r
-unsigned int  m68k_read_pcrelative_16(unsigned int a) {\r
+static unsigned int  m68k_read_16(unsigned int a, int do_fake) {\r
   a&=0xffffff;\r
   if(PicoMCD&1) return m68k_read_pcrelative_CD16(a);\r
   if(a<Pico.romsize)         return *(u16 *)(Pico.rom+(a&~1)); // Rom\r
+#ifdef EMU_C68K\r
+  if(do_fake&&((ppop&0x3f)==0x3a||(ppop&0x3f)==0x3b)) return lastread_d[lrp_mus++&15];\r
+#endif\r
   if((a&0xe00000)==0xe00000) return *(u16 *)(Pico.ram+(a&0xfffe)); // Ram\r
-  return 0;//(u16) lastread_d;\r
+  return 0;\r
 }\r
-unsigned int  m68k_read_pcrelative_32(unsigned int a) {\r
+static unsigned int  m68k_read_32(unsigned int a, int do_fake) {\r
   a&=0xffffff;\r
   if(PicoMCD&1) return m68k_read_pcrelative_CD32(a);\r
   if(a<Pico.romsize)         { u16 *pm=(u16 *)(Pico.rom+(a&~1));     return (pm[0]<<16)|pm[1]; }\r
+#ifdef EMU_C68K\r
+  if(do_fake&&((ppop&0x3f)==0x3a||(ppop&0x3f)==0x3b)) return lastread_d[lrp_mus++&15];\r
+#endif\r
   if((a&0xe00000)==0xe00000) { u16 *pm=(u16 *)(Pico.ram+(a&0xfffe)); return (pm[0]<<16)|pm[1]; } // Ram\r
-  return 0;//lastread_d;\r
+  return 0;\r
 }\r
 \r
-unsigned int m68k_read_immediate_16(unsigned int a)    { return m68k_read_pcrelative_16(a); }\r
-unsigned int m68k_read_immediate_32(unsigned int a)    { return m68k_read_pcrelative_32(a); }\r
-unsigned int m68k_read_disassembler_8 (unsigned int a) { return m68k_read_pcrelative_8 (a); }\r
-unsigned int m68k_read_disassembler_16(unsigned int a) { return m68k_read_pcrelative_16(a); }\r
-unsigned int m68k_read_disassembler_32(unsigned int a) { return m68k_read_pcrelative_32(a); }\r
+unsigned int m68k_read_pcrelative_8 (unsigned int a)   { return m68k_read_8 (a, 1); }\r
+unsigned int m68k_read_pcrelative_16(unsigned int a)   { return m68k_read_16(a, 1); }\r
+unsigned int m68k_read_pcrelative_32(unsigned int a)   { return m68k_read_32(a, 1); }\r
+unsigned int m68k_read_immediate_16(unsigned int a)    { return m68k_read_16(a, 0); }\r
+unsigned int m68k_read_immediate_32(unsigned int a)    { return m68k_read_32(a, 0); }\r
+unsigned int m68k_read_disassembler_8 (unsigned int a) { return m68k_read_8 (a, 0); }\r
+unsigned int m68k_read_disassembler_16(unsigned int a) { return m68k_read_16(a, 0); }\r
+unsigned int m68k_read_disassembler_32(unsigned int a) { return m68k_read_32(a, 0); }\r
 \r
 #ifdef EMU_C68K\r
 // ROM only\r
-unsigned int  m68k_read_memory_8(unsigned int a)  { if(a<Pico.romsize) return  *(u8 *) (Pico.rom+(a^1)); return (u8)  lastread_d[lrp_mus++&15]; }\r
-unsigned int  m68k_read_memory_16(unsigned int a) { if(a<Pico.romsize) return  *(u16 *)(Pico.rom+(a&~1));return (u16) lastread_d[lrp_mus++&15]; }\r
-unsigned int  m68k_read_memory_32(unsigned int a) { if(a<Pico.romsize) {u16 *pm=(u16 *)(Pico.rom+(a&~1));return (pm[0]<<16)|pm[1];} return lastread_d[lrp_mus++&15]; }\r
+unsigned int m68k_read_memory_8(unsigned int a)\r
+{\r
+  u8 d;\r
+  if(a<Pico.romsize) d = *(u8 *) (Pico.rom+(a^1));\r
+  else d = (u8) lastread_d[lrp_mus++&15];\r
+#ifdef __debug_io\r
+  dprintf("r8_mu : %06x,   %02x @%06x", a&0xffffff, d, SekPc);\r
+#endif\r
+  return d;\r
+}\r
+unsigned int m68k_read_memory_16(unsigned int a)\r
+{\r
+  u16 d;\r
+  if(a<Pico.romsize) d = *(u16 *)(Pico.rom+(a&~1));\r
+  else d = (u16) lastread_d[lrp_mus++&15];\r
+#ifdef __debug_io\r
+  dprintf("r16_mu: %06x, %04x @%06x", a&0xffffff, d, SekPc);\r
+#endif\r
+  return d;\r
+}\r
+unsigned int m68k_read_memory_32(unsigned int a)\r
+{\r
+  u32 d;\r
+  if(a<Pico.romsize) {u16 *pm=(u16 *)(Pico.rom+(a&~1));d=(pm[0]<<16)|pm[1];}\r
+  else d = lastread_d[lrp_mus++&15];\r
+#ifdef __debug_io\r
+  dprintf("r32_mu: %06x, %08x @%06x", a&0xffffff, d, SekPc);\r
+#endif\r
+  return d;\r
+}\r
 \r
 // ignore writes, Cyclone already done that\r
 void m68k_write_memory_8(unsigned int address, unsigned int value)  { lastwrite_mus_d[lwp_mus++&15] = value; }\r
@@ -711,32 +591,32 @@ void PicoWriteCD32w(unsigned int a, unsigned int d);
 \r
 unsigned int  m68k_read_memory_8(unsigned int address)\r
 {\r
-       return (PicoMCD&1) ? PicoReadCD8w(address)  : PicoRead8(address);\r
+    return (PicoMCD&1) ? PicoReadCD8w(address)  : PicoRead8(address);\r
 }\r
 \r
 unsigned int  m68k_read_memory_16(unsigned int address)\r
 {\r
-       return (PicoMCD&1) ? PicoReadCD16w(address) : PicoRead16(address);\r
+    return (PicoMCD&1) ? PicoReadCD16w(address) : PicoRead16(address);\r
 }\r
 \r
 unsigned int  m68k_read_memory_32(unsigned int address)\r
 {\r
-       return (PicoMCD&1) ? PicoReadCD32w(address) : PicoRead32(address);\r
+    return (PicoMCD&1) ? PicoReadCD32w(address) : PicoRead32(address);\r
 }\r
 \r
 void m68k_write_memory_8(unsigned int address, unsigned int value)\r
 {\r
-       if (PicoMCD&1) PicoWriteCD8w(address, (u8)value); else PicoWrite8(address, (u8)value);\r
+    if (PicoMCD&1) PicoWriteCD8w(address, (u8)value); else PicoWrite8(address, (u8)value);\r
 }\r
 \r
 void m68k_write_memory_16(unsigned int address, unsigned int value)\r
 {\r
-       if (PicoMCD&1) PicoWriteCD16w(address,(u16)value); else PicoWrite16(address,(u16)value);\r
+    if (PicoMCD&1) PicoWriteCD16w(address,(u16)value); else PicoWrite16(address,(u16)value);\r
 }\r
 \r
 void m68k_write_memory_32(unsigned int address, unsigned int value)\r
 {\r
-       if (PicoMCD&1) PicoWriteCD32w(address, value); else PicoWrite32(address, value);\r
+    if (PicoMCD&1) PicoWriteCD32w(address, value); else PicoWrite32(address, value);\r
 }\r
 #endif\r
 #endif // EMU_M68K\r
@@ -745,7 +625,7 @@ void m68k_write_memory_32(unsigned int address, unsigned int value)
 // -----------------------------------------------------------------\r
 //                        z80 memhandlers\r
 \r
-unsigned char z80_read(unsigned short a)\r
+PICO_INTERNAL unsigned char z80_read(unsigned short a)\r
 {\r
   u8 ret = 0;\r
 \r
@@ -773,14 +653,14 @@ end:
   return ret;\r
 }\r
 \r
-unsigned short z80_read16(unsigned short a)\r
+PICO_INTERNAL unsigned short z80_read16(unsigned short a)\r
 {\r
   //dprintf("z80_read16");\r
 \r
   return (u16) ( (u16)z80_read(a) | ((u16)z80_read((u16)(a+1))<<8) );\r
 }\r
 \r
-void z80_write(unsigned char data, unsigned short a)\r
+PICO_INTERNAL_ASM void z80_write(unsigned char data, unsigned short a)\r
 {\r
   //if (a<0x4000)\r
   //  dprintf("z80 w8 : %06x,   %02x @%04x", a, data, mz80GetRegisterValue(NULL, 0));\r
@@ -819,7 +699,7 @@ void z80_write(unsigned char data, unsigned short a)
   if (a<0x4000) { Pico.zram[a&0x1fff]=data; return; }\r
 }\r
 \r
-void z80_write16(unsigned short data, unsigned short a)\r
+PICO_INTERNAL void z80_write16(unsigned short data, unsigned short a)\r
 {\r
   //dprintf("z80_write16");\r
 \r