random warning fixes
[fceu.git] / boards / KS7012.c
CommitLineData
386f5371 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
43725da7 18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\r
19 *\r
20 * FDS Conversion\r
21 *\r
386f5371 22 */\r
23\r
24#include "mapinc.h"\r
25\r
43725da7 26static uint8 reg;\r
386f5371 27static uint8 *WRAM=NULL;\r
28static uint32 WRAMSIZE;\r
29\r
30static SFORMAT StateRegs[]=\r
31{\r
43725da7 32 {&reg, 1, "REGS"},\r
386f5371 33 {0}\r
34};\r
35\r
36static void Sync(void)\r
37{\r
386f5371 38 setprg8r(0x10,0x6000,0);\r
43725da7 39 setprg32(0x8000,reg&1);\r
40 setchr8(0);\r
41}\r
42\r
43static 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
386f5371 51}\r
52\r
43725da7 53static void UNLKS7012Power(void)\r
386f5371 54{\r
43725da7 55 reg = ~0;\r
386f5371 56 Sync();\r
43725da7 57 SetReadHandler(0x6000,0x7FFF,CartBR);\r
58 SetWriteHandler(0x6000,0x7FFF,CartBW);\r
59 SetReadHandler(0x8000,0xFFFF,CartBR);\r
60 SetWriteHandler(0x8000,0xFFFF,UNLKS7012Write);\r
386f5371 61}\r
62\r
43725da7 63static void UNLKS7012Reset(void)\r
386f5371 64{\r
43725da7 65 reg = ~0;\r
386f5371 66 Sync();\r
67}\r
68\r
43725da7 69static void StateRestore(int version)\r
386f5371 70{\r
43725da7 71 Sync();\r
386f5371 72}\r
73\r
43725da7 74static void UNLKS7012Close(void)\r
386f5371 75{\r
76 if(WRAM)\r
77 FCEU_gfree(WRAM);\r
78 WRAM=NULL;\r
79}\r
80\r
43725da7 81void UNLKS7012_Init(CartInfo *info)\r
386f5371 82{\r
43725da7 83 info->Power=UNLKS7012Power;\r
84 info->Reset=UNLKS7012Reset;\r
85 info->Close=UNLKS7012Close;\r
386f5371 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
386f5371 91\r
43725da7 92 GameStateRestore=StateRestore;\r
386f5371 93 AddExState(&StateRegs, ~0, 0, 0);\r
94}\r