| 1 | // common code for Memory.c and cd/Memory.c |
| 2 | // (c) Copyright 2006-2007, Grazvydas "notaz" Ignotas |
| 3 | |
| 4 | #ifndef UTYPES_DEFINED |
| 5 | typedef unsigned char u8; |
| 6 | typedef unsigned short u16; |
| 7 | typedef unsigned int u32; |
| 8 | #define UTYPES_DEFINED |
| 9 | #endif |
| 10 | |
| 11 | #ifdef _ASM_MEMORY_C |
| 12 | u32 OtherRead16End(u32 a, int realsize); |
| 13 | #endif |
| 14 | #ifdef _ASM_CD_MEMORY_C |
| 15 | static void OtherWrite8End(u32 a,u32 d,int realsize); |
| 16 | #endif |
| 17 | |
| 18 | |
| 19 | #ifndef _ASM_MEMORY_C |
| 20 | static |
| 21 | #endif |
| 22 | u8 z80Read8(u32 a) |
| 23 | { |
| 24 | if(Pico.m.z80Run&1) return 0; |
| 25 | |
| 26 | a&=0x1fff; |
| 27 | |
| 28 | if(!(PicoOpt&4)) { |
| 29 | // Z80 disabled, do some faking |
| 30 | static u8 zerosent = 0; |
| 31 | if(a == Pico.m.z80_lastaddr) { // probably polling something |
| 32 | u8 d = Pico.m.z80_fakeval; |
| 33 | if((d & 0xf) == 0xf && !zerosent) { |
| 34 | d = 0; zerosent = 1; |
| 35 | } else { |
| 36 | Pico.m.z80_fakeval++; |
| 37 | zerosent = 0; |
| 38 | } |
| 39 | return d; |
| 40 | } else { |
| 41 | Pico.m.z80_fakeval = 0; |
| 42 | } |
| 43 | } |
| 44 | |
| 45 | Pico.m.z80_lastaddr = (u16) a; |
| 46 | return Pico.zram[a]; |
| 47 | } |
| 48 | |
| 49 | #ifndef _ASM_MEMORY_C |
| 50 | static |
| 51 | #endif |
| 52 | u32 z80ReadBusReq(void) |
| 53 | { |
| 54 | u32 d=Pico.m.z80Run&1; |
| 55 | if (!d && Pico.m.scanline != -1) { |
| 56 | // needed by buggy Terminator (Sega CD) |
| 57 | int stop_before = SekCyclesDone() - z80stopCycle; |
| 58 | //elprintf(EL_BUSREQ, "get_zrun: stop before: %i", stop_before); |
| 59 | // note: if we use 20 or more here, Barkley Shut Up and Jam! will purposedly crash itself. |
| 60 | // but CD Terminator needs at least 32, so it only works because next frame cycle wrap. |
| 61 | if (stop_before > 0 && stop_before < 20) // Gens uses 16 here |
| 62 | d = 1; // bus not yet available |
| 63 | } |
| 64 | // |=0x80 for Shadow of the Beast & Super Offroad |
| 65 | elprintf(EL_BUSREQ, "get_zrun: %02x [%i] @%06x", d|0x80, SekCyclesDone(), SekPc); |
| 66 | return d|0x80; |
| 67 | } |
| 68 | |
| 69 | #ifndef _ASM_MEMORY_C |
| 70 | static |
| 71 | #endif |
| 72 | void z80WriteBusReq(u32 d) |
| 73 | { |
| 74 | d&=1; d^=1; |
| 75 | { |
| 76 | if (!d) |
| 77 | { |
| 78 | // this is for a nasty situation where Z80 was enabled and disabled in the same 68k timeslice (Golden Axe III) |
| 79 | if (Pico.m.z80Run) { |
| 80 | int lineCycles; |
| 81 | z80stopCycle = SekCyclesDone(); |
| 82 | if ((Pico.m.z80Run&2) && Pico.m.scanline != -1) |
| 83 | lineCycles=(488-SekCyclesLeft)&0x1ff; |
| 84 | else lineCycles=z80stopCycle-z80startCycle; // z80 was started at current line |
| 85 | if (lineCycles > 0) { // && lineCycles <= 488) { |
| 86 | //dprintf("zrun: %i/%i cycles", lineCycles, (lineCycles>>1)-(lineCycles>>5)); |
| 87 | lineCycles=(lineCycles>>1)-(lineCycles>>5); |
| 88 | z80_run_nr(lineCycles); |
| 89 | } |
| 90 | } |
| 91 | } else { |
| 92 | if (!Pico.m.z80Run) |
| 93 | z80startCycle = SekCyclesDone(); |
| 94 | else |
| 95 | d|=Pico.m.z80Run; |
| 96 | } |
| 97 | } |
| 98 | elprintf(EL_BUSREQ, "set_zrun: %i->%i [%i] @%06x", Pico.m.z80Run, d, SekCyclesDone(), SekPc); |
| 99 | Pico.m.z80Run=(u8)d; |
| 100 | } |
| 101 | |
| 102 | #ifndef _ASM_MEMORY_C |
| 103 | static |
| 104 | #endif |
| 105 | u32 OtherRead16(u32 a, int realsize) |
| 106 | { |
| 107 | u32 d=0; |
| 108 | |
| 109 | if ((a&0xffffe0)==0xa10000) { // I/O ports |
| 110 | a=(a>>1)&0xf; |
| 111 | switch(a) { |
| 112 | case 0: d=Pico.m.hardware; break; // Hardware value (Version register) |
| 113 | case 1: d=PadRead(0); break; |
| 114 | case 2: d=PadRead(1); break; |
| 115 | default: d=Pico.ioports[a]; break; // IO ports can be used as RAM |
| 116 | } |
| 117 | d|=d<<8; |
| 118 | goto end; |
| 119 | } |
| 120 | |
| 121 | // rotate fakes next fetched instruction for Time Killers |
| 122 | if (a==0xa11100) { // z80 busreq |
| 123 | d=(z80ReadBusReq()<<8)|Pico.m.rotate++; |
| 124 | goto end; |
| 125 | } |
| 126 | |
| 127 | if ((a&0xff0000)==0xa00000) { |
| 128 | if ((a&0x4000)==0x0000) { d=z80Read8(a); d|=d<<8; goto end; } // Z80 ram (not byteswaped) |
| 129 | if ((a&0x6000)==0x4000) { // 0x4000-0x5fff, Fudge if disabled |
| 130 | if(PicoOpt&1) d=YM2612Read(); |
| 131 | else d=Pico.m.rotate++&3; |
| 132 | elprintf(EL_YM2612R, "read ym2612: %02x", d); |
| 133 | goto end; |
| 134 | } |
| 135 | d=0xffff; |
| 136 | goto end; |
| 137 | } |
| 138 | |
| 139 | d = OtherRead16End(a, realsize); |
| 140 | |
| 141 | end: |
| 142 | return d; |
| 143 | } |
| 144 | |
| 145 | static void IoWrite8(u32 a, u32 d) |
| 146 | { |
| 147 | a=(a>>1)&0xf; |
| 148 | // 6 button gamepad: if TH went from 0 to 1, gamepad changes state |
| 149 | if(PicoOpt&0x20) { |
| 150 | if(a==1) { |
| 151 | Pico.m.padDelay[0] = 0; |
| 152 | if(!(Pico.ioports[1]&0x40) && (d&0x40)) Pico.m.padTHPhase[0]++; |
| 153 | } |
| 154 | else if(a==2) { |
| 155 | Pico.m.padDelay[1] = 0; |
| 156 | if(!(Pico.ioports[2]&0x40) && (d&0x40)) Pico.m.padTHPhase[1]++; |
| 157 | } |
| 158 | } |
| 159 | Pico.ioports[a]=(u8)d; // IO ports can be used as RAM |
| 160 | } |
| 161 | |
| 162 | #ifndef _ASM_CD_MEMORY_C |
| 163 | static |
| 164 | #endif |
| 165 | void OtherWrite8(u32 a,u32 d) |
| 166 | { |
| 167 | #if !defined(_ASM_MEMORY_C) || defined(_ASM_MEMORY_C_AMIPS) |
| 168 | if ((a&0xe700f9)==0xc00011||(a&0xff7ff9)==0xa07f11) { if(PicoOpt&2) SN76496Write(d); return; } // PSG Sound |
| 169 | if ((a&0xff4000)==0xa00000) { if(!(Pico.m.z80Run&1)) Pico.zram[a&0x1fff]=(u8)d; return; } // Z80 ram |
| 170 | if ((a&0xff6000)==0xa04000) { if(PicoOpt&1) emustatus|=YM2612Write(a&3, d)&1; return; } // FM Sound |
| 171 | if ((a&0xffffe0)==0xa10000) { IoWrite8(a, d); return; } // I/O ports |
| 172 | #endif |
| 173 | if (a==0xa11100) { z80WriteBusReq(d); return; } |
| 174 | if (a==0xa11200) { |
| 175 | elprintf(EL_BUSREQ, "write z80Reset: %02x", d); |
| 176 | if(!(d&1)) z80_reset(); |
| 177 | return; |
| 178 | } |
| 179 | #if !defined(_ASM_MEMORY_C) || defined(_ASM_MEMORY_C_AMIPS) |
| 180 | if ((a&0xff7f00)==0xa06000) // Z80 BANK register |
| 181 | { |
| 182 | Pico.m.z80_bank68k>>=1; |
| 183 | Pico.m.z80_bank68k|=(d&1)<<8; |
| 184 | Pico.m.z80_bank68k&=0x1ff; // 9 bits and filled in the new top one |
| 185 | return; |
| 186 | } |
| 187 | #endif |
| 188 | if ((a&0xe700e0)==0xc00000) { |
| 189 | d&=0xff; |
| 190 | PicoVideoWrite(a,(u16)(d|(d<<8))); // Byte access gets mirrored |
| 191 | return; |
| 192 | } |
| 193 | |
| 194 | OtherWrite8End(a, d, 8); |
| 195 | } |
| 196 | |
| 197 | |
| 198 | #ifndef _ASM_CD_MEMORY_C |
| 199 | static |
| 200 | #endif |
| 201 | void OtherWrite16(u32 a,u32 d) |
| 202 | { |
| 203 | if (a==0xa11100) { z80WriteBusReq(d>>8); return; } |
| 204 | if (a==0xa11200) { elprintf(EL_BUSREQ, "write z80reset: %04x", d); if(!(d&0x100)) z80_reset(); return; } |
| 205 | if ((a&0xffffe0)==0xa10000) { IoWrite8(a, d); return; } // I/O ports |
| 206 | if ((a&0xff4000)==0xa00000) { if(!(Pico.m.z80Run&1)) Pico.zram[a&0x1fff]=(u8)(d>>8); return; } // Z80 ram (MSB only) |
| 207 | if ((a&0xe700f8)==0xc00010||(a&0xff7ff8)==0xa07f10) { if(PicoOpt&2) SN76496Write(d); return; } // PSG Sound |
| 208 | if ((a&0xff6000)==0xa04000) { if(PicoOpt&1) emustatus|=YM2612Write(a&3, d)&1; return; } // FM Sound (??) |
| 209 | if ((a&0xff7f00)==0xa06000) // Z80 BANK register |
| 210 | { |
| 211 | Pico.m.z80_bank68k>>=1; |
| 212 | Pico.m.z80_bank68k|=(d&1)<<8; |
| 213 | Pico.m.z80_bank68k&=0x1ff; // 9 bits and filled in the new top one |
| 214 | return; |
| 215 | } |
| 216 | |
| 217 | #ifndef _CD_MEMORY_C |
| 218 | if (a >= SRam.start && a <= SRam.end) { |
| 219 | elprintf(EL_SRAMIO, "sram w16 [%06x] %04x @ %06x", a, d, SekPc); |
| 220 | if ((Pico.m.sram_reg&0x16)==0x10) { // detected, not EEPROM, write not disabled |
| 221 | u8 *pm=(u8 *)(SRam.data-SRam.start+a); |
| 222 | *pm++=d>>8; |
| 223 | *pm++=d; |
| 224 | SRam.changed = 1; |
| 225 | } |
| 226 | else |
| 227 | SRAMWrite(a, d); |
| 228 | return; |
| 229 | } |
| 230 | #else |
| 231 | OtherWrite8End(a, d>>8, 16); |
| 232 | OtherWrite8End(a+1,d&0xff, 16); |
| 233 | #endif |
| 234 | } |
| 235 | |
| 236 | |