added timer saving to savestates
authornotaz <notasas@gmail.com>
Tue, 17 Jun 2008 21:20:30 +0000 (21:20 +0000)
committernotaz <notasas@gmail.com>
Tue, 17 Jun 2008 21:20:30 +0000 (21:20 +0000)
git-svn-id: file:///home/notaz/opt/svn/PicoDrive@487 be3aeb3a-fb24-0410-a615-afba39da0efa

Pico/Memory.c
Pico/Pico.c
Pico/PicoFrameHints.c
Pico/PicoInt.h
platform/linux/port_config.h

index e4a251b..fe87ab9 100644 (file)
@@ -720,14 +720,14 @@ void ym2612_sync_timers(int z80_cycles, int mode_old, int mode_new)
 \r
   /* update timer a */\r
   if (mode_old & 1)\r
-    while (xcycles >= timer_a_next_oflow)\r
+    while (xcycles > timer_a_next_oflow)\r
       timer_a_next_oflow += timer_a_step;\r
 \r
   if ((mode_old ^ mode_new) & 1) // turning on/off\r
   {\r
     if (mode_old & 1) {\r
       timer_a_offset = timer_a_next_oflow - xcycles;\r
-      timer_a_next_oflow = 0x70000000;\r
+      timer_a_next_oflow = TIMER_NO_OFLOW;\r
     }\r
     else\r
       timer_a_next_oflow = xcycles + timer_a_offset;\r
@@ -737,14 +737,14 @@ void ym2612_sync_timers(int z80_cycles, int mode_old, int mode_new)
 \r
   /* update timer b */\r
   if (mode_old & 2)\r
-    while (xcycles >= timer_b_next_oflow)\r
+    while (xcycles > timer_b_next_oflow)\r
       timer_b_next_oflow += timer_b_step;\r
 \r
   if ((mode_old ^ mode_new) & 2)\r
   {\r
     if (mode_old & 2) {\r
       timer_b_offset = timer_b_next_oflow - xcycles;\r
-      timer_b_next_oflow = 0x70000000;\r
+      timer_b_next_oflow = TIMER_NO_OFLOW;\r
     }\r
     else\r
       timer_b_next_oflow = xcycles + timer_b_offset;\r
@@ -796,9 +796,8 @@ int ym2612_write_local(u32 a, u32 d, int is_from_z80)
           {\r
             //elprintf(EL_STATUS, "timer a set %i", TAnew);\r
             ym2612.OPN.ST.TA = TAnew;\r
-            ym2612.OPN.ST.TAC = (1024-TAnew)*18;\r
+            //ym2612.OPN.ST.TAC = (1024-TAnew)*18;\r
             //ym2612.OPN.ST.TAT = 0;\r
-            //\r
             timer_a_step = timer_a_offset = 16466 * (1024 - TAnew);\r
             if (ym2612.OPN.ST.mode & 1) {\r
               int cycles = is_from_z80 ? z80_cyclesDone() : cycles_68k_to_z80(SekCyclesDone());\r
@@ -812,7 +811,7 @@ int ym2612_write_local(u32 a, u32 d, int is_from_z80)
           if (ym2612.OPN.ST.TB != d) {\r
             //elprintf(EL_STATUS, "timer b set %i", d);\r
             ym2612.OPN.ST.TB = d;\r
-            ym2612.OPN.ST.TBC = (256-d) * 288;\r
+            //ym2612.OPN.ST.TBC = (256-d) * 288;\r
             //ym2612.OPN.ST.TBT  = 0;\r
             timer_b_step = timer_b_offset = 262800 * (256 - d); // 262881\r
             if (ym2612.OPN.ST.mode & 2) {\r
@@ -913,18 +912,28 @@ u32 ym2612_read_local_68k(void)
 \r
 void ym2612_pack_state(void)\r
 {\r
-  // TODO timers\r
+  // timers are saved as tick counts, in 16.16 int format\r
+  int tac, tat = 0, tbc, tbt = 0;\r
+  tac = 1024 - ym2612.OPN.ST.TA;\r
+  tbc = 256  - ym2612.OPN.ST.TB;\r
+  if (timer_a_next_oflow != TIMER_NO_OFLOW)\r
+    tat = (int)((double)(timer_a_step - timer_a_next_oflow) / (double)timer_a_step * tac * 65536);\r
+  if (timer_b_next_oflow != TIMER_NO_OFLOW)\r
+    tbt = (int)((double)(timer_b_step - timer_b_next_oflow) / (double)timer_b_step * tbc * 65536);\r
+  elprintf(EL_YMTIMER, "save: timer a %i/%i", tat >> 16, tac);\r
+  elprintf(EL_YMTIMER, "save: timer b %i/%i", tbt >> 16, tbc);\r
+\r
 #ifdef __GP2X__\r
   if (PicoOpt & POPT_EXT_FM)\r
-    /*YM2612PicoStateSave2_940(0, 0)*/;\r
+    /*YM2612PicoStateSave2_940(tat, tbt)*/;\r
   else\r
 #endif\r
-    YM2612PicoStateSave2(0, 0);\r
+    YM2612PicoStateSave2(tat, tbt);\r
 }\r
 \r
 void ym2612_unpack_state(void)\r
 {\r
-  int i, ret, tat, tbt;\r
+  int i, ret, tac, tat, tbc, tbt;\r
   YM2612PicoStateLoad();\r
 \r
   // feed all the registers and update internal state\r
@@ -943,6 +952,20 @@ void ym2612_unpack_state(void)
   else\r
 #endif\r
     ret = YM2612PicoStateLoad2(&tat, &tbt);\r
+  if (ret != 0) return; // no saved timers\r
+\r
+  tac = (1024 - ym2612.OPN.ST.TA) << 16;\r
+  tbc = (256  - ym2612.OPN.ST.TB) << 16;\r
+  if (ym2612.OPN.ST.mode & 1)\r
+    timer_a_next_oflow = (double)(tac - tat) / (double)tac * timer_a_step;\r
+  else\r
+    timer_a_next_oflow = TIMER_NO_OFLOW;\r
+  if (ym2612.OPN.ST.mode & 2)\r
+    timer_b_next_oflow = (double)(tbc - tbt) / (double)tbc * timer_b_step;\r
+  else\r
+    timer_b_next_oflow = TIMER_NO_OFLOW;\r
+  elprintf(EL_YMTIMER, "load: %i/%i, timer_a_next_oflow %i", tat>>16, tac>>16, timer_a_next_oflow >> 8);\r
+  elprintf(EL_YMTIMER, "load: %i/%i, timer_b_next_oflow %i", tbt>>16, tbc>>16, timer_b_next_oflow >> 8);\r
 }\r
 \r
 // -----------------------------------------------------------------\r
index 6d0bfdd..9fe97bf 100644 (file)
@@ -378,7 +378,6 @@ static int PicoFrameSimple(void)
 \r
   SekCyclesReset();\r
   z80_resetCycles();\r
-  timers_cycle();\r
 \r
   // 6 button pad: let's just say it timed out now\r
   Pico.m.padTHPhase[0]=Pico.m.padTHPhase[1]=0;\r
@@ -494,6 +493,8 @@ static int PicoFrameSimple(void)
   if (PsndOut && ym2612.dacen && PsndDacLine <= line_last)\r
     PsndDoDAC(line_last);\r
 \r
+  timers_cycle();\r
+\r
   return 0;\r
 }\r
 \r
index fe2631c..b224c9b 100644 (file)
@@ -63,7 +63,6 @@ static int PicoFrameHints(void)
 #ifdef PICO_CD
   SekCyclesResetS68k();
 #endif
-  timers_cycle();
   PsndDacLine = 0;
 
   pv->status&=~0x88; // clear V-Int, come out of vblank
@@ -241,10 +240,12 @@ static int PicoFrameHints(void)
 
   // sync z80
   if (Pico.m.z80Run && (PicoOpt&POPT_EN_Z80))
-    PicoSyncZ80(Pico.m.pal ? 151809 : 127671); // cycles adjusted for convertor
+    PicoSyncZ80(Pico.m.pal ? 151809 : 127671); // cycles adjusted for converter
   if (PsndOut && ym2612.dacen && PsndDacLine <= lines-1)
     PsndDoDAC(lines-1);
 
+  timers_cycle();
+
   return 0;
 }
 
index 06f4c64..c2f8b60 100644 (file)
@@ -479,15 +479,17 @@ void ym2612_sync_timers(int z80_cycles, int mode_old, int mode_new);
 void ym2612_pack_state(void);\r
 void ym2612_unpack_state(void);\r
 \r
+#define TIMER_NO_OFLOW 0x70000000\r
+\r
 #define timers_cycle() \\r
-  if (timer_a_next_oflow > 0 && timer_a_next_oflow < 0x70000000) \\r
+  if (timer_a_next_oflow > 0 && timer_a_next_oflow < TIMER_NO_OFLOW) \\r
     timer_a_next_oflow -= Pico.m.pal ? 70938*256 : 59659*256; \\r
-  if (timer_b_next_oflow > 0 && timer_b_next_oflow < 0x70000000) \\r
+  if (timer_b_next_oflow > 0 && timer_b_next_oflow < TIMER_NO_OFLOW) \\r
     timer_b_next_oflow -= Pico.m.pal ? 70938*256 : 59659*256; \\r
   ym2612_sync_timers(0, ym2612.OPN.ST.mode, ym2612.OPN.ST.mode);\r
 \r
 #define timers_reset() \\r
-  timer_a_next_oflow = timer_b_next_oflow = 0x70000000; \\r
+  timer_a_next_oflow = timer_b_next_oflow = TIMER_NO_OFLOW; \\r
   timer_a_step = timer_a_offset = 16495 * 1024; \\r
   timer_b_step = timer_b_offset = 263912 * 256;\r
 \r
index 21e5b32..efc732e 100644 (file)
@@ -15,7 +15,7 @@
 #define SIMPLE_WRITE_SOUND     0
 #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_HVCNT|EL_ASVDP)//|EL_SVP)
+#define EL_LOGMASK (EL_ANOMALY|EL_STATUS|EL_SRAMIO|EL_EEPROM|EL_UIO|EL_YMTIMER)//|EL_VDPDMA|EL_HVCNT|EL_ASVDP)//|EL_SVP)
 // 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__)