merge mappers from FCEU-mm
[fceu.git] / boards / supervision.c
1 /* FCE Ultra - NES/Famicom Emulator
2  *
3  * Copyright notice for this file:
4  *  Copyright (C) 2002 Xodnizel
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 static uint8 cmd0, cmd1;
24
25 static void DoSuper(void)
26 {
27   setprg8r((cmd0&0xC)>>2,0x6000,((cmd0&0x3)<<4)|0xF);
28   if(cmd0&0x10)
29   {
30     setprg16r((cmd0&0xC)>>2,0x8000,((cmd0&0x3)<<3)|(cmd1&7));
31     setprg16r((cmd0&0xC)>>2,0xc000,((cmd0&0x3)<<3)|7);
32   }
33   else
34     setprg32r(4,0x8000,0);
35   setmirror(((cmd0&0x20)>>5)^1);
36 }
37
38 static DECLFW(SuperWrite)
39 {
40   if(!(cmd0&0x10))
41   {
42     cmd0=V;
43     DoSuper();
44   }
45 }
46
47 static DECLFW(SuperHi)
48 {
49   cmd1=V;
50   DoSuper();
51 }
52
53 static void SuperReset(void)
54 {
55   SetWriteHandler(0x6000,0x7FFF,SuperWrite);
56   SetWriteHandler(0x8000,0xFFFF,SuperHi);
57   SetReadHandler(0x6000,0xFFFF,CartBR);  
58   cmd0=cmd1=0;
59   setprg32r(4,0x8000,0);
60   setchr8(0);
61 }
62
63 static void SuperRestore(int version)
64 {
65   DoSuper();
66 }
67
68 void Supervision16_Init(CartInfo *info)
69 {
70   AddExState(&cmd0, 1, 0,"L1");
71   AddExState(&cmd1, 1, 0,"L2");
72   info->Power=SuperReset;
73   GameStateRestore=SuperRestore;
74 }