mapper fixes for ncpu, debug is broken atm
[fceu.git] / mappers / 32.c
CommitLineData
c62d2810 1/* FCE Ultra - NES/Famicom Emulator
2 *
3 * Copyright notice for this file:
4 * Copyright (C) 2002 Ben Parnell
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
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 */
20
21#include "mapinc.h"
22
23
24#define IREMCon mapbyte1[0]
25
26static DECLFW(Mapper32_write)
27{
28 switch(A>>12)
29 {
30 case 0x8:
31 mapbyte1[1]=V;
32 if(IREMCon) {ROM_BANK8(0xc000,V);ROM_BANK8(0x8000,~1);}
33 else {ROM_BANK8(0x8000,V);ROM_BANK8(0xc000,~1);}
c0bf6f9f 34 X6502_Rebase();
c62d2810 35 break;
36 case 0x9:MIRROR_SET2(V&1);
37 IREMCon=(V>>1)&1;
38 if(IREMCon) {ROM_BANK8(0xc000,mapbyte1[1]);ROM_BANK8(0x8000,~1);}
39 else {ROM_BANK8(0x8000,mapbyte1[1]); ROM_BANK8(0xc000,~1);}
40 MIRROR_SET(V&1);
c0bf6f9f 41 X6502_Rebase();
c62d2810 42 break;
43 case 0xa:ROM_BANK8(0xA000,V);
c0bf6f9f 44 X6502_Rebase();
c62d2810 45 break;
46 }
47
48 if((A&0xF000)==0xb000)
49 VROM_BANK1((A&0x7)<<10,V);
50}
51
52void Mapper32_init(void)
53{
54 ROM_BANK16(0x8000,0);
55 ROM_BANK16(0xc000,~0);
56 SetWriteHandler(0x8000,0xffff,Mapper32_write);
57}