shows: press start button
[picodrive.git] / Pico / cd / Pico.c
index d4560fd..573322c 100644 (file)
@@ -1,7 +1,7 @@
 // This is part of Pico Library
 
 // (c) Copyright 2004 Dave, All rights reserved.
-// (c) Copyright 2006 notaz, All rights reserved.
+// (c) Copyright 2007 notaz, All rights reserved.
 // Free for non-commercial use.
 
 // For commercial use, separate licencing terms must be obtained.
@@ -11,7 +11,7 @@
 #include "../sound/sound.h"
 
 
-int counter75hz = 0;
+static int counter75hz = 0; // TODO: move 2 context
 
 
 int PicoInitMCD(void)
@@ -33,6 +33,7 @@ int PicoResetMCD(int hard)
   // clear everything except BIOS
   memset(Pico_mcd->prg_ram, 0, sizeof(mcd_state) - sizeof(Pico_mcd->bios));
   PicoMCD |= 2; // s68k reset pending
+  Pico_mcd->s68k_regs[3] = 1; // 2M word RAM mode with m68k access after reset
   counter75hz = 0;
 
   LC89510_Reset();
@@ -63,15 +64,29 @@ static __inline void SekRunS68k(int cyc)
 #endif
 }
 
-// TODO: tidy
-extern unsigned char m68k_regs[0x40];
-extern unsigned char s68k_regs[0x200];
+static __inline void check_cd_dma(void)
+{
+       int ddx;
+
+       if (!(Pico_mcd->scd.Status_CDC & 0x08)) return;
+
+       ddx = Pico_mcd->s68k_regs[4] & 7;
+       if (ddx <  2) return; // invalid
+       if (ddx <  4) {
+               Pico_mcd->s68k_regs[4] |= 0x40; // Data set ready in host port
+               return;
+       }
+       if (ddx == 6) return; // invalid
+
+       Update_CDC_TRansfer(ddx); // now go and do the actual transfer
+}
+
 
 // Accurate but slower frame which does hints
 static int PicoFrameHintsMCD(void)
 {
   struct PicoVideo *pv=&Pico.video;
-  int total_z80=0,lines,y,lines_vis = 224,z80CycleAim = 0,line_sample;
+  int total_z80=0,lines,y,lines_vis = 224,z80CycleAim = 0,line_sample,counter75hz_lim;
   const int cycles_68k=488,cycles_z80=228,cycles_s68k=795; // both PAL and NTSC compile to same values
   int skip=PicoSkipFrame || (PicoOpt&0x10);
   int hint; // Hint counter
@@ -81,11 +96,13 @@ static int PicoFrameHintsMCD(void)
     //cycles_z80 = (int) ((double) OSC_PAL  / 15 / 50 / 312 + 0.4); // 228
     lines  = 312;    // Steve Snake says there are 313 lines, but this seems to also work well
     line_sample = 68;
+    counter75hz_lim = 2080;
     if(pv->reg[1]&8) lines_vis = 240;
   } else {
     //cycles_68k = (int) ((double) OSC_NTSC /  7 / 60 / 262 + 0.4); // 488
     //cycles_z80 = (int) ((double) OSC_NTSC / 15 / 60 / 262 + 0.4); // 228
     lines  = 262;
+    counter75hz_lim = 2096;
     line_sample = 93;
   }
 
@@ -112,6 +129,8 @@ static int PicoFrameHintsMCD(void)
       if(Pico.m.padDelay[1]++ > 25) Pico.m.padTHPhase[1]=0;
     }
 
+    check_cd_dma();
+
     // H-Interrupts:
     if(y <= lines_vis && --hint < 0) // y <= lines_vis: Comix Zone, Golden Axe
     {
@@ -160,8 +179,9 @@ static int PicoFrameHintsMCD(void)
 
     // Run scanline:
       //dprintf("m68k starting exec @ %06x", SekPc);
+    if(Pico.m.dma_bytes) SekCycleCnt+=CheckDMA();
     SekRun(cycles_68k);
-    if ((Pico_mcd->m68k_regs[1]&3) == 1) { // no busreq/no reset
+    if ((Pico_mcd->m.busreq&3) == 1) { // no busreq/no reset
 #if 0
            int i;
            FILE *f = fopen("prg_ram.bin", "wb");
@@ -185,9 +205,8 @@ static int PicoFrameHintsMCD(void)
       total_z80+=z80_run(z80CycleAim-total_z80);
     }
 
-    // if cdd is on, counter elapsed and irq4 is not masked, do irq4
-    if ((Pico_mcd->s68k_regs[0x37]&4) && ++counter75hz > 209 && (Pico_mcd->s68k_regs[0x33]&(1<<4))) {
-      counter75hz = 0;
+    if ((counter75hz+=10) >= counter75hz_lim) {
+      counter75hz -= counter75hz_lim;
       Check_CD_Command();
     }
   }