merge mapper code from FCEUX
[fceu.git] / mappers / 33.c
CommitLineData
c62d2810 1/* FCE Ultra - NES/Famicom Emulator
2 *
3 * Copyright notice for this file:
d97315ac 4 * Copyright (C) 2002 Xodnizel
c62d2810 5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
386f5371 18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
c62d2810 19 */
20
21#include "mapinc.h"
22
d97315ac 23static int is48;
24
c62d2810 25static DECLFW(Mapper33_write)
26{
d97315ac 27 //printf("%04x:%02x, %d\n",A,V,scanline);
c62d2810 28
d97315ac 29 A&=0xF003;
c62d2810 30 if(A>=0xA000 && A<=0xA003)
31 VROM_BANK1(0x1000+((A&3)<<10),V);
d97315ac 32 else switch(A)
33 {
34 case 0x8000:if(!is48) MIRROR_SET((V>>6)&1);
35 ROM_BANK8(0x8000,V);
36 break;
37 case 0x8001:ROM_BANK8(0xA000,V); break;
38 case 0x8002:VROM_BANK2(0x0000,V);break;
39 case 0x8003:VROM_BANK2(0x0800,V);break;
386f5371 40 case 0xe000:MIRROR_SET((V>>6)&1);break;
d97315ac 41 }
42}
43
44static DECLFW(Mapper48_HiWrite)
45{
46 switch(A&0xF003)
47 {
48 case 0xc000:IRQLatch=V;break;
49 case 0xc001:IRQCount=IRQLatch;break;
50 case 0xc003:IRQa=0;X6502_IRQEnd(FCEU_IQEXT);break;
51 case 0xc002:IRQa=1;break;
52 case 0xe000:MIRROR_SET((V>>6)&1);break;
c62d2810 53 }
54}
55
56static void heho(void)
57{
58 if(IRQa)
59 {
60 IRQCount++;
c0bf6f9f 61 if(IRQCount==0x100)
c62d2810 62 {
d97315ac 63 X6502_IRQBegin(FCEU_IQEXT);
c62d2810 64 IRQa=0;
65 }
66 }
67}
68
69void Mapper33_init(void)
70{
d97315ac 71 SetWriteHandler(0x8000,0xffff,Mapper33_write);
72 is48=0;
73}
74
75void Mapper48_init(void)
76{
386f5371 77 SetWriteHandler(0x8000,0xbfff,Mapper33_write);
d97315ac 78 SetWriteHandler(0xc000,0xffff,Mapper48_HiWrite);
79 GameHBIRQHook=heho;
80 is48=1;
c62d2810 81}