merge mappers from FCEU-mm
[fceu.git] / boards / sheroes.c
1 /* FCE Ultra - NES/Famicom Emulator\r
2  *\r
3  * Copyright notice for this file:\r
4  *  Copyright (C) 2006 CaH4e3\r
5  *\r
6  * This program is free software; you can redistribute it and/or modify\r
7  * it under the terms of the GNU General Public License as published by\r
8  * the Free Software Foundation; either version 2 of the License, or\r
9  * (at your option) any later version.\r
10  *\r
11  * This program is distributed in the hope that it will be useful,\r
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of\r
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\r
14  * GNU General Public License for more details.\r
15  *\r
16  * You should have received a copy of the GNU General Public License\r
17  * along with this program; if not, write to the Free Software\r
18  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA\r
19  */\r
20 \r
21 #include "mapinc.h"\r
22 #include "mmc3.h"\r
23 \r
24 static uint8 *CHRRAM;\r
25 static uint8 tekker;\r
26 \r
27 static void MSHCW(uint32 A, uint8 V)\r
28 {\r
29   if(EXPREGS[0]&0x40)\r
30     setchr8r(0x10,0);\r
31   else\r
32   {\r
33     if(A<0x800)\r
34       setchr1(A,V|((EXPREGS[0]&8)<<5));\r
35     else if(A<0x1000)\r
36       setchr1(A,V|((EXPREGS[0]&4)<<6));\r
37     else if(A<0x1800)\r
38       setchr1(A,V|((EXPREGS[0]&1)<<8));\r
39     else\r
40       setchr1(A,V|((EXPREGS[0]&2)<<7));\r
41   }\r
42 }\r
43 \r
44 static DECLFW(MSHWrite)\r
45 {\r
46   EXPREGS[0]=V;\r
47   FixMMC3CHR(MMC3_cmd);\r
48 }\r
49 \r
50 static DECLFR(MSHRead)\r
51 {\r
52   return(tekker);\r
53 }\r
54 \r
55 static void MSHReset(void)\r
56 {\r
57   MMC3RegReset();\r
58   tekker^=0xFF; \r
59 }\r
60 \r
61 static void MSHPower(void)\r
62 {\r
63   tekker=0x00;\r
64   GenMMC3Power();\r
65   SetWriteHandler(0x4100,0x4100,MSHWrite);\r
66   SetReadHandler(0x4100,0x4100,MSHRead);\r
67 }\r
68 \r
69 static void MSHClose(void)\r
70 {\r
71   if(CHRRAM)\r
72     FCEU_gfree(CHRRAM);\r
73   CHRRAM=NULL;\r
74 }\r
75 \r
76 void UNLSHeroes_Init(CartInfo *info)\r
77 {\r
78   GenMMC3_Init(info, 256, 512, 0, 0);\r
79   cwrap=MSHCW;\r
80   info->Power=MSHPower;\r
81   info->Reset=MSHReset;\r
82   info->Close=MSHClose;\r
83   CHRRAM = (uint8*)FCEU_gmalloc(8192);\r
84   SetupCartCHRMapping(0x10, CHRRAM, 8192, 1);\r
85   AddExState(EXPREGS, 4, 0, "EXPR");\r
86   AddExState(&tekker, 1, 0, "DIPSW");\r
87 }\r