merge mapper code from FCEUX
[fceu.git] / boards / KS7012.c
1 /* FCE Ultra - NES/Famicom Emulator\r
2  *\r
3  * Copyright notice for this file:\r
4  *  Copyright (C) 2007 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  * FDS Conversion\r
21  *\r
22  */\r
23 \r
24 #include "mapinc.h"\r
25 \r
26 static uint8 reg;\r
27 static uint8 *WRAM=NULL;\r
28 static uint32 WRAMSIZE;\r
29 \r
30 static SFORMAT StateRegs[]=\r
31 {\r
32   {&reg, 1, "REGS"},\r
33   {0}\r
34 };\r
35 \r
36 static void Sync(void)\r
37 {\r
38   setprg8r(0x10,0x6000,0);\r
39   setprg32(0x8000,reg&1);\r
40   setchr8(0);\r
41 }\r
42 \r
43 static DECLFW(UNLKS7012Write)\r
44 {\r
45 //  FCEU_printf("bs %04x %02x\n",A,V);\r
46   switch(A)\r
47   {\r
48     case 0xE0A0: reg=0; Sync(); break;\r
49     case 0xEE36: reg=1; Sync(); break;\r
50   }\r
51 }\r
52 \r
53 static void UNLKS7012Power(void)\r
54 {\r
55   reg = ~0;\r
56   Sync();\r
57   SetReadHandler(0x6000,0x7FFF,CartBR);\r
58   SetWriteHandler(0x6000,0x7FFF,CartBW);\r
59   SetReadHandler(0x8000,0xFFFF,CartBR);\r
60   SetWriteHandler(0x8000,0xFFFF,UNLKS7012Write);\r
61 }\r
62 \r
63 static void UNLKS7012Reset(void)\r
64 {\r
65   reg = ~0;\r
66   Sync();\r
67 }\r
68 \r
69 static void StateRestore(int version)\r
70 {\r
71   Sync();\r
72 }\r
73 \r
74 static void UNLKS7012Close(void)\r
75 {\r
76   if(WRAM)\r
77     FCEU_gfree(WRAM);\r
78   WRAM=NULL;\r
79 }\r
80 \r
81 void UNLKS7012_Init(CartInfo *info)\r
82 {\r
83   info->Power=UNLKS7012Power;\r
84   info->Reset=UNLKS7012Reset;\r
85   info->Close=UNLKS7012Close;\r
86 \r
87   WRAMSIZE=8192;\r
88   WRAM=(uint8*)FCEU_gmalloc(WRAMSIZE);\r
89   SetupCartPRGMapping(0x10,WRAM,WRAMSIZE,1);\r
90   AddExState(WRAM, WRAMSIZE, 0, "WRAM");\r
91 \r
92   GameStateRestore=StateRestore;\r
93   AddExState(&StateRegs, ~0, 0, 0);\r
94 }\r