patch/gg support, 1.201 release
[picodrive.git] / Pico / Area.c
CommitLineData
cc68a136 1// This is part of Pico Library\r
2\r
3// (c) Copyright 2004 Dave, All rights reserved.\r
4// (c) Copyright 2006 notaz, All rights reserved.\r
5// Free for non-commercial use.\r
6\r
7// For commercial use, separate licencing terms must be obtained.\r
8\r
9\r
10#include "PicoInt.h"\r
11\r
12// ym2612\r
13#include "sound/ym2612.h"\r
14\r
15// sn76496\r
16extern int *sn76496_regs;\r
17\r
18\r
19struct PicoArea { void *data; int len; char *name; };\r
20\r
21// strange observation on Symbian OS 9.1, m600 organizer fw r3a06:\r
22// taking an address of fread or fwrite causes "application could't be started" error\r
23// on startup randomly depending on binary layout of executable file.\r
24\r
860c6322 25arearw *areaRead = (arearw *) 0; // fread; // read and write function pointers for\r
26arearw *areaWrite = (arearw *) 0; // fwrite; // gzip save state ability\r
27areaeof *areaEof = (areaeof *) 0;\r
28areaseek *areaSeek = (areaseek *) 0;\r
29areaclose *areaClose = (areaclose *) 0;\r
cc68a136 30\r
31\r
32// Scan one variable and callback\r
33static int ScanVar(void *data,int len,char *name,void *PmovFile,int PmovAction)\r
34{\r
35 int ret = 0;\r
36 if ((PmovAction&3)==1) ret = areaWrite(data,1,len,PmovFile);\r
37 if ((PmovAction&3)==2) ret = areaRead (data,1,len,PmovFile);\r
38 return (ret != len);\r
39}\r
40\r
41#define SCAN_VAR(x,y) ScanVar(&x,sizeof(x),y,PmovFile,PmovAction);\r
42#define SCANP(x) ScanVar(&Pico.x,sizeof(Pico.x),#x,PmovFile,PmovAction);\r
43\r
44// Pack the cpu into a common format:\r
51a902ae 45int PicoAreaPackCpu(unsigned char *cpu, int is_sub)\r
cc68a136 46{\r
47 unsigned int pc=0;\r
48\r
49#ifdef EMU_A68K\r
50 memcpy(cpu,M68000_regs.d,0x40);\r
51 pc=M68000_regs.pc;\r
52 *(unsigned char *)(cpu+0x44)=(unsigned char)M68000_regs.ccr;\r
53 *(unsigned char *)(cpu+0x45)=(unsigned char)M68000_regs.srh;\r
54 *(unsigned int *)(cpu+0x48)=M68000_regs.isp;\r
55#endif\r
56\r
57#ifdef EMU_C68K\r
51a902ae 58 struct Cyclone *context = is_sub ? &PicoCpuS68k : &PicoCpu;\r
59 memcpy(cpu,context->d,0x40);\r
60 pc=context->pc-context->membase;\r
61 *(unsigned int *)(cpu+0x44)=CycloneGetSr(context);\r
62 *(unsigned int *)(cpu+0x48)=context->osp;\r
cc68a136 63#endif\r
64\r
65#ifdef EMU_M68K\r
51a902ae 66 m68ki_cpu_core *context = is_sub ? &PicoS68kCPU : &PicoM68kCPU;\r
67 memcpy(cpu,context->dar,0x40);\r
68 pc=context->pc;\r
cc68a136 69 *(unsigned int *)(cpu+0x44)=m68k_get_reg(NULL, M68K_REG_SR);\r
51a902ae 70 *(unsigned int *)(cpu+0x48)=context->sp[0];\r
cc68a136 71#endif\r
72\r
73 *(unsigned int *)(cpu+0x40)=pc;\r
74 return 0;\r
75}\r
76\r
51a902ae 77int PicoAreaUnpackCpu(unsigned char *cpu, int is_sub)\r
cc68a136 78{\r
cc68a136 79#ifdef EMU_A68K\r
80 memcpy(M68000_regs.d,cpu,0x40);\r
81 M68000_regs.pc=pc;\r
82 M68000_regs.ccr=*(unsigned char *)(cpu+0x44);\r
83 M68000_regs.srh=*(unsigned char *)(cpu+0x45);\r
84 M68000_regs.isp=*(unsigned int *)(cpu+0x48);\r
85#endif\r
86\r
87#ifdef EMU_C68K\r
51a902ae 88 struct Cyclone *context = is_sub ? &PicoCpuS68k : &PicoCpu;\r
89 CycloneSetSr(context, *(unsigned int *)(cpu+0x44));\r
90 context->osp=*(unsigned int *)(cpu+0x48);\r
91 memcpy(context->d,cpu,0x40);\r
92 context->membase=0;\r
93 context->pc = context->checkpc(*(unsigned int *)(cpu+0x40)); // Base pc\r
cc68a136 94#endif\r
95\r
96#ifdef EMU_M68K\r
51a902ae 97 m68ki_cpu_core *context = is_sub ? &PicoS68kCPU : &PicoM68kCPU;\r
98 memcpy(context->dar,cpu,0x40);\r
99 context->pc=*(unsigned int *)(cpu+0x40);\r
cc68a136 100 m68k_set_reg(M68K_REG_SR, *(unsigned int *)(cpu+0x44));\r
51a902ae 101 context->sp[0]=*(unsigned int *)(cpu+0x48);\r
cc68a136 102#endif\r
103 return 0;\r
104}\r
105\r
106// Scan the contents of the virtual machine's memory for saving or loading\r
107static int PicoAreaScan(int PmovAction,unsigned int ver, void *PmovFile)\r
108{\r
109 void *ym2612_regs;\r
110 unsigned char cpu[0x60];\r
111 unsigned char cpu_z80[0x60];\r
112 int ret;\r
113\r
114 memset(&cpu,0,sizeof(cpu));\r
115 memset(&cpu_z80,0,sizeof(cpu_z80));\r
116\r
117 ym2612_regs = YM2612GetRegs();\r
118\r
119 if (PmovAction&4)\r
120 {\r
121 Pico.m.scanline=0;\r
122\r
51a902ae 123 // Scan all the memory areas:\r
cc68a136 124 SCANP(ram) SCANP(vram) SCANP(zram) SCANP(cram) SCANP(vsram)\r
125\r
126 // Pack, scan and unpack the cpu data:\r
51a902ae 127 if((PmovAction&3)==1) PicoAreaPackCpu(cpu, 0);\r
cc68a136 128 //SekInit(); // notaz: do we really have to do this here?\r
129 //PicoMemInit();\r
130 SCAN_VAR(cpu,"cpu")\r
51a902ae 131 if((PmovAction&3)==2) PicoAreaUnpackCpu(cpu, 0);\r
cc68a136 132\r
133 SCAN_VAR(Pico.m ,"misc")\r
134 SCAN_VAR(Pico.video,"video")\r
135\r
51a902ae 136 // notaz: save/load z80, YM2612, sn76496 states instead of Pico.s (which is unused anyway)\r
137 if(PicoOpt&7) {\r
138 if((PmovAction&3)==1) z80_pack(cpu_z80);\r
cc68a136 139 ret = SCAN_VAR(cpu_z80,"cpu_z80")\r
51a902ae 140 // do not unpack if we fail to load z80 state\r
141 if((PmovAction&3)==2) {\r
cc68a136 142 if(ret) z80_reset();\r
143 else z80_unpack(cpu_z80);\r
144 }\r
51a902ae 145 }\r
146 if(PicoOpt&3)\r
cc68a136 147 ScanVar(sn76496_regs,28*4,"SN76496state", PmovFile, PmovAction); // regs and other stuff\r
51a902ae 148 if(PicoOpt&1) {\r
cc68a136 149 ScanVar(ym2612_regs, 0x200+4, "YM2612state", PmovFile, PmovAction); // regs + addr line\r
51a902ae 150 if((PmovAction&3)==2) YM2612PicoStateLoad(); // reload YM2612 state from it's regs\r
151 }\r
cc68a136 152 }\r
153\r
154 return 0;\r
155}\r
156\r
157// ---------------------------------------------------------------------------\r
158// Helper code to save/load to a file handle\r
159\r
160// Save or load the state from PmovFile:\r
161int PmovState(int PmovAction, void *PmovFile)\r
162{\r
163 int minimum=0;\r
164 unsigned char head[32];\r
165\r
75736070 166 if (PicoMCD & 1)\r
51a902ae 167 {\r
168 if (PmovAction&1) return PicoCdSaveState(PmovFile);\r
169 if (PmovAction&2) return PicoCdLoadState(PmovFile);\r
170 }\r
171\r
cc68a136 172 memset(head,0,sizeof(head));\r
173\r
174 // Find out minimal compatible version:\r
175 //PicoAreaScan(PmovAction&0xc,&minimum);\r
176 minimum = 0x0021;\r
177\r
178 memcpy(head,"Pico",4);\r
179 *(unsigned int *)(head+0x8)=PicoVer;\r
180 *(unsigned int *)(head+0xc)=minimum;\r
181\r
182 // Scan header:\r
183 if (PmovAction&1) areaWrite(head,1,sizeof(head),PmovFile);\r
184 if (PmovAction&2) areaRead (head,1,sizeof(head),PmovFile);\r
185\r
186 // Scan memory areas:\r
187 PicoAreaScan(PmovAction, *(unsigned int *)(head+0x8), PmovFile);\r
188\r
189 return 0;\r
190}\r
191\r