allow compiling without 32x and sms code
[picodrive.git] / pico / debug.c
1 // some debug code, just for fun of it
2 // (c) Copyright 2008 notaz, All rights reserved.
3
4 #include "pico_int.h"
5 #include "sound/ym2612.h"
6 #include "debug.h"
7
8 #define bit(r, x) ((r>>x)&1)
9 #define MVP dstrp+=strlen(dstrp)
10 void z80_debug(char *dstr);
11
12 static char dstr[1024*8];
13
14 char *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         !!(SRam.flags & SRF_ENABLED), !!(SRam.flags & SRF_EEPROM), 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, cycles: %i\n", Pico.m.pal, Pico.m.hardware, Pico.m.frame_count, SekCyclesDoneT()); MVP;
42   sprintf(dstrp, "M68k: PC: %06x, SR: %04x, irql: %i\n", SekPc, SekSr, SekIrqLevel); MVP;
43 #if defined(EMU_C68K)
44   sprintf(dstrp - 1, ", st_flg: %x\n", PicoCpuCM68k.state_flags); MVP;
45 #endif
46   for (r = 0; r < 8; r++) {
47     sprintf(dstrp, "d%i=%08x, a%i=%08x\n", r, SekDar(r), r, SekDar(r+8)); MVP;
48   }
49   sprintf(dstrp, "z80Run: %i, z80_reset: %i, z80_bnk: %06x\n", Pico.m.z80Run, Pico.m.z80_reset, Pico.m.z80_bank68k<<15); MVP;
50   z80_debug(dstrp); MVP;
51   if (strlen(dstr) > sizeof(dstr))
52     elprintf(EL_STATUS, "warning: debug buffer overflow (%i/%i)\n", strlen(dstr), sizeof(dstr));
53
54   return dstr;
55 }
56
57 char *PDebug32x(void)
58 {
59 #ifndef NO_32X
60   char *dstrp = dstr;
61   unsigned short *r;
62   int i;
63
64   r = Pico32x.regs;
65   sprintf(dstrp, "regs:\n"); MVP;
66   for (i = 0; i < 0x40/2; i += 8) {
67     sprintf(dstrp, "%02x: %04x %04x %04x %04x %04x %04x %04x %04x\n",
68       i*2, r[i+0], r[i+1], r[i+2], r[i+3], r[i+4], r[i+5], r[i+6], r[i+7]); MVP;
69   }
70   r = Pico32x.sh2_regs;
71   sprintf(dstrp, "SH: %04x %04x %04x      IRQs: %02x  eflags: %02x\n",
72     r[0], r[1], r[2], Pico32x.sh2irqs, Pico32x.emu_flags); MVP;
73
74   i = 0;
75   r = Pico32x.vdp_regs;
76   sprintf(dstrp, "VDP regs:\n"); MVP;
77   sprintf(dstrp, "%02x: %04x %04x %04x %04x %04x %04x %04x %04x\n",
78     i*2, r[i+0], r[i+1], r[i+2], r[i+3], r[i+4], r[i+5], r[i+6], r[i+7]); MVP;
79
80   sprintf(dstrp, "                   mSH2              sSH2\n"); MVP;
81   sprintf(dstrp, "PC,SR %08x,     %03x %08x,     %03x\n", sh2_pc(0), sh2_sr(0), sh2_pc(1), sh2_sr(1)); MVP;
82   for (i = 0; i < 16/2; i++) {
83     sprintf(dstrp, "R%d,%2d %08x,%08x %08x,%08x\n", i, i + 8,
84       sh2_reg(0,i), sh2_reg(0,i+8), sh2_reg(1,i), sh2_reg(1,i+8)); MVP;
85   }
86   sprintf(dstrp, "gb,vb %08x,%08x %08x,%08x\n", sh2_gbr(0), sh2_vbr(0), sh2_gbr(1), sh2_vbr(1)); MVP;
87   sprintf(dstrp, "IRQs/mask:        %02x/%02x             %02x/%02x\n",
88     Pico32x.sh2irqi[0], Pico32x.sh2irq_mask[0], Pico32x.sh2irqi[1], Pico32x.sh2irq_mask[1]); MVP;
89 #else
90   dstr[0] = 0;
91 #endif
92
93   return dstr;
94 }
95
96 char *PDebugSpriteList(void)
97 {
98   struct PicoVideo *pvid=&Pico.video;
99   int table=0,u,link=0;
100   int max_sprites = 80;
101   char *dstrp;
102
103   if (!(pvid->reg[12]&1))
104     max_sprites = 64;
105
106   dstr[0] = 0;
107   dstrp = dstr;
108
109   table=pvid->reg[5]&0x7f;
110   if (pvid->reg[12]&1) table&=0x7e; // Lowest bit 0 in 40-cell mode
111   table<<=8; // Get sprite table address/2
112
113   for (u=0; u < max_sprites; u++)
114   {
115     unsigned int *sprite;
116     int code, code2, sx, sy, height;
117
118     sprite=(unsigned int *)(Pico.vram+((table+(link<<2))&0x7ffc)); // Find sprite
119
120     // get sprite info
121     code = sprite[0];
122
123     // check if it is on this line
124     sy = (code&0x1ff)-0x80;
125     height = ((code>>24)&3)+1;
126
127     // masking sprite?
128     code2 = sprite[1];
129     sx = ((code2>>16)&0x1ff)-0x80;
130
131     sprintf(dstrp, "#%02i x:%4i y:%4i %ix%i %s\n", u, sx, sy, ((code>>26)&3)+1, height,
132       (code2&0x8000)?"hi":"lo");
133     MVP;
134
135     link=(code>>16)&0x7f;
136     if(!link) break; // End of sprites
137   }
138
139   return dstr;
140 }
141
142 #define GREEN1  0x0700
143 #ifdef USE_BGR555
144  #define YELLOW1 0x071c
145  #define BLUE1   0xf000
146  #define RED1    0x001e
147 #else
148  #define YELLOW1 0xe700
149  #define BLUE1   0x001e
150  #define RED1    0xf000
151 #endif
152
153 static void set16(unsigned short *p, unsigned short d, int cnt)
154 {
155   while (cnt-- > 0)
156     *p++ = d;
157 }
158
159 void PDebugShowSpriteStats(unsigned short *screen, int stride)
160 {
161   int lines, i, u, step;
162   unsigned short *dest;
163   unsigned char *p;
164
165   step = (320-4*4-1) / MAX_LINE_SPRITES;
166   lines = 240;
167   if (!Pico.m.pal || !(Pico.video.reg[1]&8))
168     lines = 224, screen += stride*8;
169
170   for (i = 0; i < lines; i++)
171   {
172     dest = screen + stride*i;
173     p = &HighLnSpr[i][0];
174
175     // sprite graphs
176     for (u = 0; u < (p[0] & 0x7f); u++) {
177       set16(dest, (p[3+u] & 0x80) ? YELLOW1 : GREEN1, step);
178       dest += step;
179     }
180
181     // flags
182     dest = screen + stride*i + 320-4*4;
183     if (p[1] & 0x40) set16(dest+4*0, GREEN1,  4);
184     if (p[1] & 0x80) set16(dest+4*1, YELLOW1, 4);
185     if (p[1] & 0x20) set16(dest+4*2, BLUE1,   4);
186     if (p[1] & 0x10) set16(dest+4*3, RED1,    4);
187   }
188
189   // draw grid
190   for (i = step*5; i <= 320-4*4-1; i += step*5) {
191     for (u = 0; u < lines; u++)
192       screen[i + u*stride] = 0x182;
193   }
194 }
195
196 void PDebugShowPalette(unsigned short *screen, int stride)
197 {
198   int x, y;
199
200   Pico.m.dirtyPal = 1;
201   if (PicoAHW & PAHW_SMS)
202     PicoDoHighPal555M4();
203   else
204     PicoDoHighPal555(1);
205   Pico.m.dirtyPal = 1;
206
207   screen += 16*stride+8;
208   for (y = 0; y < 8*4; y++)
209     for (x = 0; x < 8*16; x++)
210       screen[x + y*stride] = HighPal[x/8 + (y/8)*16];
211
212   screen += 160;
213   for (y = 0; y < 8*4; y++)
214     for (x = 0; x < 8*16; x++)
215       screen[x + y*stride] = HighPal[(x/8 + (y/8)*16) | 0x40];
216
217   screen += stride*48;
218   for (y = 0; y < 8*4; y++)
219     for (x = 0; x < 8*16; x++)
220       screen[x + y*stride] = HighPal[(x/8 + (y/8)*16) | 0x80];
221 }
222
223 #if defined(DRAW2_OVERRIDE_LINE_WIDTH)
224 #define DRAW2_LINE_WIDTH DRAW2_OVERRIDE_LINE_WIDTH
225 #else
226 #define DRAW2_LINE_WIDTH 328
227 #endif
228
229 void PDebugShowSprite(unsigned short *screen, int stride, int which)
230 {
231   struct PicoVideo *pvid=&Pico.video;
232   int table=0,u,link=0,*sprite=0,*fsprite,oldsprite[2];
233   int x,y,max_sprites = 80, oldcol, oldreg;
234
235   if (!(pvid->reg[12]&1))
236     max_sprites = 64;
237
238   table=pvid->reg[5]&0x7f;
239   if (pvid->reg[12]&1) table&=0x7e; // Lowest bit 0 in 40-cell mode
240   table<<=8; // Get sprite table address/2
241
242   for (u=0; u < max_sprites && u <= which; u++)
243   {
244     sprite=(int *)(Pico.vram+((table+(link<<2))&0x7ffc)); // Find sprite
245
246     link=(sprite[0]>>16)&0x7f;
247     if (!link) break; // End of sprites
248   }
249   if (u >= max_sprites) return;
250
251   fsprite = (int *)(Pico.vram+(table&0x7ffc));
252   oldsprite[0] = fsprite[0];
253   oldsprite[1] = fsprite[1];
254   fsprite[0] = (sprite[0] & ~0x007f01ff) | 0x000080;
255   fsprite[1] = (sprite[1] & ~0x01ff8000) | 0x800000;
256   oldreg = pvid->reg[7];
257   oldcol = Pico.cram[0];
258   pvid->reg[7] = 0;
259   Pico.cram[0] = 0;
260   PicoDrawMask = PDRAW_SPRITES_LOW_ON;
261
262   PicoFrameFull();
263   for (y = 0; y < 8*4; y++)
264   {
265     unsigned char *ps = PicoDraw2FB + DRAW2_LINE_WIDTH*y + 8;
266     for (x = 0; x < 8*4; x++)
267       if (ps[x]) screen[x] = HighPal[ps[x]], ps[x] = 0;
268     screen += stride;
269   }
270
271   fsprite[0] = oldsprite[0];
272   fsprite[1] = oldsprite[1];
273   pvid->reg[7] = oldreg;
274   Pico.cram[0] = oldcol;
275   PicoDrawMask = -1;
276 }
277
278 #define dump_ram(ram,fname) \
279 { \
280   unsigned short *sram = (unsigned short *) ram; \
281   FILE *f; \
282   int i; \
283 \
284   for (i = 0; i < sizeof(ram)/2; i++) \
285     sram[i] = (sram[i]<<8) | (sram[i]>>8); \
286   f = fopen(fname, "wb"); \
287   if (f) { \
288     fwrite(ram, 1, sizeof(ram), f); \
289     fclose(f); \
290   } \
291   for (i = 0; i < sizeof(ram)/2; i++) \
292     sram[i] = (sram[i]<<8) | (sram[i]>>8); \
293 }
294
295 #define dump_ram_noswab(ram,fname) \
296 { \
297   FILE *f; \
298   f = fopen(fname, "wb"); \
299   if (f) { \
300     fwrite(ram, 1, sizeof(ram), f); \
301     fclose(f); \
302   } \
303 }
304
305 void PDebugDumpMem(void)
306 {
307   dump_ram_noswab(Pico.zram, "dumps/zram.bin");
308   dump_ram(Pico.cram, "dumps/cram.bin");
309
310   if (PicoAHW & PAHW_SMS)
311   {
312     dump_ram_noswab(Pico.vramb, "dumps/vram.bin");
313   }
314   else
315   {
316     dump_ram(Pico.ram,  "dumps/ram.bin");
317     dump_ram(Pico.vram, "dumps/vram.bin");
318     dump_ram(Pico.vsram,"dumps/vsram.bin");
319   }
320
321   if (PicoAHW & PAHW_MCD)
322   {
323     dump_ram(Pico_mcd->prg_ram, "dumps/prg_ram.bin");
324     if (Pico_mcd->s68k_regs[3]&4) // 1M mode?
325       wram_1M_to_2M(Pico_mcd->word_ram2M);
326     dump_ram(Pico_mcd->word_ram2M, "dumps/word_ram_2M.bin");
327     wram_2M_to_1M(Pico_mcd->word_ram2M);
328     dump_ram(Pico_mcd->word_ram1M[0], "dumps/word_ram_1M_0.bin");
329     dump_ram(Pico_mcd->word_ram1M[1], "dumps/word_ram_1M_1.bin");
330     if (!(Pico_mcd->s68k_regs[3]&4)) // 2M mode?
331       wram_2M_to_1M(Pico_mcd->word_ram2M);
332     dump_ram_noswab(Pico_mcd->pcm_ram,"dumps/pcm_ram.bin");
333     dump_ram_noswab(Pico_mcd->bram,   "dumps/bram.bin");
334   }
335
336 #ifndef NO_32X
337   if (PicoAHW & PAHW_32X)
338   {
339     dump_ram(Pico32xMem->sdram, "dumps/sdram.bin");
340     dump_ram(Pico32xMem->dram[0], "dumps/dram0.bin");
341     dump_ram(Pico32xMem->dram[1], "dumps/dram1.bin");
342     dump_ram(Pico32xMem->pal, "dumps/pal32x.bin");
343     dump_ram(Pico32xMem->data_array[0], "dumps/data_array0.bin");
344     dump_ram(Pico32xMem->data_array[1], "dumps/data_array1.bin");
345   }
346 #endif
347 }
348
349 void PDebugZ80Frame(void)
350 {
351   int lines, line_sample;
352
353   if (PicoAHW & PAHW_SMS)
354     return;
355
356   if (Pico.m.pal) {
357     lines = 312;
358     line_sample = 68;
359   } else {
360     lines = 262;
361     line_sample = 93;
362   }
363
364   z80_resetCycles();
365   emustatus &= ~1;
366
367   if (Pico.m.z80Run && !Pico.m.z80_reset && (PicoOpt&POPT_EN_Z80))
368     PicoSyncZ80(line_sample*488);
369   if (ym2612.dacen && PsndDacLine <= line_sample)
370     PsndDoDAC(line_sample);
371   if (PsndOut)
372     PsndGetSamples(line_sample);
373
374   if (Pico.m.z80Run && !Pico.m.z80_reset && (PicoOpt&POPT_EN_Z80)) {
375     PicoSyncZ80(224*488);
376     z80_int();
377   }
378   if (ym2612.dacen && PsndDacLine <= 224)
379     PsndDoDAC(224);
380   if (PsndOut)
381     PsndGetSamples(224);
382
383   // sync z80
384   if (Pico.m.z80Run && !Pico.m.z80_reset && (PicoOpt&POPT_EN_Z80))
385     PicoSyncZ80(Pico.m.pal ? 151809 : 127671); // cycles adjusted for converter
386   if (PsndOut && ym2612.dacen && PsndDacLine <= lines-1)
387     PsndDoDAC(lines-1);
388
389   timers_cycle();
390 }
391
392 void PDebugCPUStep(void)
393 {
394   if (PicoAHW & PAHW_SMS)
395     z80_run_nr(1);
396   else
397     SekStepM68k();
398 }
399