mem map bugfix
[picodrive.git] / pico / debug.c
CommitLineData
f579f7b8 1// some debug code, just for fun of it
2// (c) Copyright 2008 notaz, All rights reserved.
3
efcba75f 4#include "pico_int.h"
7b3f44c6 5#include "sound/ym2612.h"
efcba75f 6#include "debug.h"
f579f7b8 7
8#define bit(r, x) ((r>>x)&1)
9#define MVP dstrp+=strlen(dstrp)
10void z80_debug(char *dstr);
11
12static char dstr[1024*8];
13
14char *PDebugMain(void)
15{
16 struct PicoVideo *pv=&Pico.video;
17 unsigned char *reg=pv->reg, r;
18 extern int HighPreSpr[];
19 int i, sprites_lo, sprites_hi;
20 char *dstrp;
21
22 sprites_lo = sprites_hi = 0;
23 for (i = 0; HighPreSpr[i] != 0; i+=2)
24 if (HighPreSpr[i+1] & 0x8000)
25 sprites_hi++;
26 else sprites_lo++;
27
28 dstrp = dstr;
29 sprintf(dstrp, "mode set 1: %02x spr lo: %2i, spr hi: %2i\n", (r=reg[0]), sprites_lo, sprites_hi); MVP;
30 sprintf(dstrp, "display_disable: %i, M3: %i, palette: %i, ?, hints: %i\n", bit(r,0), bit(r,1), bit(r,2), bit(r,4)); MVP;
31 sprintf(dstrp, "mode set 2: %02x hcnt: %i\n", (r=reg[1]), pv->reg[10]); MVP;
32 sprintf(dstrp, "SMS/gen: %i, pal: %i, dma: %i, vints: %i, disp: %i, TMS: %i\n",bit(r,2),bit(r,3),bit(r,4),bit(r,5),bit(r,6),bit(r,7)); MVP;
33 sprintf(dstrp, "mode set 3: %02x\n", (r=reg[0xB])); MVP;
34 sprintf(dstrp, "LSCR: %i, HSCR: %i, 2cell vscroll: %i, IE2: %i\n", bit(r,0), bit(r,1), bit(r,2), bit(r,3)); MVP;
35 sprintf(dstrp, "mode set 4: %02x\n", (r=reg[0xC])); MVP;
36 sprintf(dstrp, "interlace: %i%i, cells: %i, shadow: %i\n", bit(r,2), bit(r,1), (r&0x80) ? 40 : 32, bit(r,3)); MVP;
37 sprintf(dstrp, "scroll size: w: %i, h: %i SRAM: %i; eeprom: %i (%i)\n", reg[0x10]&3, (reg[0x10]&0x30)>>4,
38 bit(Pico.m.sram_reg, 4), bit(Pico.m.sram_reg, 2), SRam.eeprom_type); MVP;
39 sprintf(dstrp, "sram range: %06x-%06x, reg: %02x\n", SRam.start, SRam.end, Pico.m.sram_reg); MVP;
40 sprintf(dstrp, "pend int: v:%i, h:%i, vdp status: %04x\n", bit(pv->pending_ints,5), bit(pv->pending_ints,4), pv->status); MVP;
41 sprintf(dstrp, "pal: %i, hw: %02x, frame#: %i\n", Pico.m.pal, Pico.m.hardware, Pico.m.frame_count); MVP;
42#if defined(EMU_C68K)
43 sprintf(dstrp, "M68k: PC: %06x, st_flg: %x, cycles: %u\n", SekPc, PicoCpuCM68k.state_flags, SekCyclesDoneT()); MVP;
44 sprintf(dstrp, "d0=%08x, a0=%08x, osp=%08x, irql=%i\n", PicoCpuCM68k.d[0], PicoCpuCM68k.a[0], PicoCpuCM68k.osp, PicoCpuCM68k.irq); MVP;
45 sprintf(dstrp, "d1=%08x, a1=%08x, sr=%04x\n", PicoCpuCM68k.d[1], PicoCpuCM68k.a[1], CycloneGetSr(&PicoCpuCM68k)); dstrp+=strlen(dstrp); MVP;
46 for(r=2; r < 8; r++) {
47 sprintf(dstrp, "d%i=%08x, a%i=%08x\n", r, PicoCpuCM68k.d[r], r, PicoCpuCM68k.a[r]); MVP;
48 }
49#elif defined(EMU_M68K)
50 sprintf(dstrp, "M68k: PC: %06x, cycles: %u, irql: %i\n", SekPc, SekCyclesDoneT(), PicoCpuMM68k.int_level>>8); MVP;
51#elif defined(EMU_F68K)
52 sprintf(dstrp, "M68k: PC: %06x, cycles: %u, irql: %i\n", SekPc, SekCyclesDoneT(), PicoCpuFM68k.interrupts[0]); MVP;
53#endif
54 sprintf(dstrp, "z80Run: %i, z80_reset: %i, z80_bnk: %06x\n", Pico.m.z80Run, Pico.m.z80_reset, Pico.m.z80_bank68k<<15); MVP;
55 z80_debug(dstrp); MVP;
56 if (strlen(dstr) > sizeof(dstr))
f8af9634 57 elprintf(EL_STATUS, "warning: debug buffer overflow (%i/%i)\n", strlen(dstr), sizeof(dstr));
f579f7b8 58
59 return dstr;
60}
61
62char *PDebugSpriteList(void)
63{
64 struct PicoVideo *pvid=&Pico.video;
65 int table=0,u,link=0;
66 int max_sprites = 80;
67 char *dstrp;
68
69 if (!(pvid->reg[12]&1))
70 max_sprites = 64;
71
72 dstr[0] = 0;
73 dstrp = dstr;
74
75 table=pvid->reg[5]&0x7f;
76 if (pvid->reg[12]&1) table&=0x7e; // Lowest bit 0 in 40-cell mode
77 table<<=8; // Get sprite table address/2
78
79 for (u=0; u < max_sprites; u++)
80 {
81 unsigned int *sprite;
82 int code, code2, sx, sy, height;
83
84 sprite=(unsigned int *)(Pico.vram+((table+(link<<2))&0x7ffc)); // Find sprite
85
86 // get sprite info
87 code = sprite[0];
88
89 // check if it is on this line
90 sy = (code&0x1ff)-0x80;
91 height = ((code>>24)&3)+1;
92
93 // masking sprite?
94 code2 = sprite[1];
95 sx = ((code2>>16)&0x1ff)-0x80;
96
97 sprintf(dstrp, "#%02i x:%4i y:%4i %ix%i %s\n", u, sx, sy, ((code>>26)&3)+1, height,
98 (code2&0x8000)?"hi":"lo");
99 MVP;
100
101 link=(code>>16)&0x7f;
102 if(!link) break; // End of sprites
103 }
104
105 return dstr;
106}
107
108#define GREEN1 0x0700
109#ifdef USE_BGR555
110 #define YELLOW1 0x071c
111 #define BLUE1 0xf000
112 #define RED1 0x001e
113#else
114 #define YELLOW1 0xe700
115 #define BLUE1 0x001e
116 #define RED1 0xf000
117#endif
118
119static void set16(unsigned short *p, unsigned short d, int cnt)
120{
121 while (cnt-- > 0)
122 *p++ = d;
123}
124
125void PDebugShowSpriteStats(unsigned short *screen, int stride)
126{
127 int lines, i, u, step;
128 unsigned short *dest;
129 unsigned char *p;
130
131 step = (320-4*4-1) / MAX_LINE_SPRITES;
132 lines = 240;
133 if (!Pico.m.pal || !(Pico.video.reg[1]&8))
134 lines = 224, screen += stride*8;
135
136 for (i = 0; i < lines; i++)
137 {
138 dest = screen + stride*i;
139 p = &HighLnSpr[i][0];
140
141 // sprite graphs
142 for (u = 0; u < (p[0] & 0x7f); u++) {
143 set16(dest, (p[3+u] & 0x80) ? YELLOW1 : GREEN1, step);
144 dest += step;
145 }
146
147 // flags
148 dest = screen + stride*i + 320-4*4;
149 if (p[1] & 0x40) set16(dest+4*0, GREEN1, 4);
150 if (p[1] & 0x80) set16(dest+4*1, YELLOW1, 4);
151 if (p[1] & 0x20) set16(dest+4*2, BLUE1, 4);
152 if (p[1] & 0x10) set16(dest+4*3, RED1, 4);
153 }
154
155 // draw grid
156 for (i = step*5; i <= 320-4*4-1; i += step*5) {
157 for (u = 0; u < lines; u++)
158 screen[i + u*stride] = 0x182;
159 }
160}
161
162void PDebugShowPalette(unsigned short *screen, int stride)
163{
164 unsigned int *spal=(void *)Pico.cram;
165 unsigned int *dpal=(void *)HighPal;
166 int x, y, i;
167
168 for (i = 0x3f/2; i >= 0; i--)
169#ifdef USE_BGR555
170 dpal[i] = ((spal[i]&0x000f000f)<< 1)|((spal[i]&0x00f000f0)<<3)|((spal[i]&0x0f000f00)<<4);
171#else
172 dpal[i] = ((spal[i]&0x000f000f)<<12)|((spal[i]&0x00f000f0)<<3)|((spal[i]&0x0f000f00)>>7);
173#endif
174 for (i = 0x3f; i >= 0; i--)
175 HighPal[0x40|i] = (unsigned short)((HighPal[i]>>1)&0x738e);
176 for (i = 0x3f; i >= 0; i--) {
177 int t=HighPal[i]&0xe71c;t+=0x4208;if(t&0x20)t|=0x1c;if(t&0x800)t|=0x700;if(t&0x10000)t|=0xe000;t&=0xe71c;
178 HighPal[0x80|i] = (unsigned short)t;
179 }
180
181 screen += 16*stride+8;
182 for (y = 0; y < 8*4; y++)
183 for (x = 0; x < 8*16; x++)
184 screen[x + y*stride] = HighPal[x/8 + (y/8)*16];
185
186 screen += 160;
187 for (y = 0; y < 8*4; y++)
188 for (x = 0; x < 8*16; x++)
189 screen[x + y*stride] = HighPal[(x/8 + (y/8)*16) | 0x40];
190
191 screen += stride*48;
192 for (y = 0; y < 8*4; y++)
193 for (x = 0; x < 8*16; x++)
194 screen[x + y*stride] = HighPal[(x/8 + (y/8)*16) | 0x80];
195
196 Pico.m.dirtyPal = 1;
197}
198
199#if defined(DRAW2_OVERRIDE_LINE_WIDTH)
200#define DRAW2_LINE_WIDTH DRAW2_OVERRIDE_LINE_WIDTH
201#else
202#define DRAW2_LINE_WIDTH 328
203#endif
204
205void PDebugShowSprite(unsigned short *screen, int stride, int which)
206{
207 struct PicoVideo *pvid=&Pico.video;
208 int table=0,u,link=0,*sprite=0,*fsprite,oldsprite[2];
209 int x,y,max_sprites = 80, oldcol, oldreg;
210
211 if (!(pvid->reg[12]&1))
212 max_sprites = 64;
213
214 table=pvid->reg[5]&0x7f;
215 if (pvid->reg[12]&1) table&=0x7e; // Lowest bit 0 in 40-cell mode
216 table<<=8; // Get sprite table address/2
217
218 for (u=0; u < max_sprites && u <= which; u++)
219 {
220 sprite=(int *)(Pico.vram+((table+(link<<2))&0x7ffc)); // Find sprite
221
222 link=(sprite[0]>>16)&0x7f;
8cf22667 223 if (!link) break; // End of sprites
f579f7b8 224 }
8cf22667 225 if (u >= max_sprites) return;
f579f7b8 226
227 fsprite = (int *)(Pico.vram+(table&0x7ffc));
228 oldsprite[0] = fsprite[0];
229 oldsprite[1] = fsprite[1];
230 fsprite[0] = (sprite[0] & ~0x007f01ff) | 0x000080;
231 fsprite[1] = (sprite[1] & ~0x01ff8000) | 0x800000;
232 oldreg = pvid->reg[7];
233 oldcol = Pico.cram[0];
234 pvid->reg[7] = 0;
235 Pico.cram[0] = 0;
236 PicoDrawMask = PDRAW_SPRITES_LOW_ON;
237
238 PicoFrameFull();
239 for (y = 0; y < 8*4; y++)
240 {
241 unsigned char *ps = PicoDraw2FB + DRAW2_LINE_WIDTH*y + 8;
242 for (x = 0; x < 8*4; x++)
8cf22667 243 if (ps[x]) screen[x] = HighPal[ps[x]], ps[x] = 0;
f579f7b8 244 screen += stride;
245 }
246
247 fsprite[0] = oldsprite[0];
248 fsprite[1] = oldsprite[1];
249 pvid->reg[7] = oldreg;
250 Pico.cram[0] = oldcol;
251 PicoDrawMask = -1;
252}
253
254#define dump_ram(ram,fname) \
255{ \
256 unsigned short *sram = (unsigned short *) ram; \
257 FILE *f; \
258 int i; \
259\
260 for (i = 0; i < sizeof(ram)/2; i++) \
261 sram[i] = (sram[i]<<8) | (sram[i]>>8); \
262 f = fopen(fname, "wb"); \
263 if (f) { \
264 fwrite(ram, 1, sizeof(ram), f); \
265 fclose(f); \
266 } \
267 for (i = 0; i < sizeof(ram)/2; i++) \
268 sram[i] = (sram[i]<<8) | (sram[i]>>8); \
269}
270
271#define dump_ram_noswab(ram,fname) \
272{ \
273 FILE *f; \
274 f = fopen(fname, "wb"); \
275 if (f) { \
276 fwrite(ram, 1, sizeof(ram), f); \
277 fclose(f); \
278 } \
279}
280
281void PDebugDumpMem(void)
282{
283 dump_ram(Pico.ram, "dumps/ram.bin");
284 dump_ram_noswab(Pico.zram, "dumps/zram.bin");
285 dump_ram(Pico.vram, "dumps/vram.bin");
286 dump_ram(Pico.cram, "dumps/cram.bin");
287 dump_ram(Pico.vsram,"dumps/vsram.bin");
288
289 if (PicoAHW & PAHW_MCD)
290 {
291 dump_ram(Pico_mcd->prg_ram, "dumps/prg_ram.bin");
292 if (Pico_mcd->s68k_regs[3]&4) // 1M mode?
293 wram_1M_to_2M(Pico_mcd->word_ram2M);
294 dump_ram(Pico_mcd->word_ram2M, "dumps/word_ram_2M.bin");
295 wram_2M_to_1M(Pico_mcd->word_ram2M);
296 dump_ram(Pico_mcd->word_ram1M[0], "dumps/word_ram_1M_0.bin");
297 dump_ram(Pico_mcd->word_ram1M[1], "dumps/word_ram_1M_1.bin");
298 if (!(Pico_mcd->s68k_regs[3]&4)) // 2M mode?
299 wram_2M_to_1M(Pico_mcd->word_ram2M);
300 dump_ram_noswab(Pico_mcd->pcm_ram,"dumps/pcm_ram.bin");
301 dump_ram_noswab(Pico_mcd->bram, "dumps/bram.bin");
302 }
303}
304
7b3f44c6 305void PDebugZ80Frame(void)
306{
307 int lines, line_sample;
308
309 if (Pico.m.pal) {
310 lines = 312;
311 line_sample = 68;
312 } else {
313 lines = 262;
314 line_sample = 93;
315 }
316
317 z80_resetCycles();
318 emustatus &= ~1;
319
320 if (Pico.m.z80Run && !Pico.m.z80_reset && (PicoOpt&POPT_EN_Z80))
321 PicoSyncZ80(line_sample*488);
322 if (ym2612.dacen && PsndDacLine <= line_sample)
323 PsndDoDAC(line_sample);
324 if (PsndOut)
325 PsndGetSamples(line_sample);
326
327 if (Pico.m.z80Run && !Pico.m.z80_reset && (PicoOpt&POPT_EN_Z80)) {
328 PicoSyncZ80(224*488);
329 z80_int();
330 }
331 if (ym2612.dacen && PsndDacLine <= 224)
332 PsndDoDAC(224);
333 if (PsndOut)
334 PsndGetSamples(224);
335
336 // sync z80
337 if (Pico.m.z80Run && !Pico.m.z80_reset && (PicoOpt&POPT_EN_Z80))
338 PicoSyncZ80(Pico.m.pal ? 151809 : 127671); // cycles adjusted for converter
339 if (PsndOut && ym2612.dacen && PsndDacLine <= lines-1)
340 PsndDoDAC(lines-1);
341
342 timers_cycle();
343}
344