Add mapper 294
This commit is contained in:
61
src/boards/294.c
Normal file
61
src/boards/294.c
Normal file
@@ -0,0 +1,61 @@
|
||||
/* FCE Ultra - NES/Famicom Emulator
|
||||
*
|
||||
* Copyright notice for this file:
|
||||
* Copyright (C) 2022 NewRisingSun
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation; either version 2 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program; if not, write to the Free Software
|
||||
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
*
|
||||
*/
|
||||
|
||||
#include "mapinc.h"
|
||||
|
||||
static uint8 latch;
|
||||
|
||||
static void Mapper294_sync (void) {
|
||||
setprg16(0x8000, latch);
|
||||
setprg16(0xC000, latch |7);
|
||||
setchr8(0);
|
||||
setmirror(latch &0x80? MI_H: MI_V);
|
||||
}
|
||||
|
||||
static DECLFW(Mapper294_writeInnerBank) {
|
||||
latch =latch &~7 | V&7;
|
||||
Mapper294_sync();
|
||||
}
|
||||
|
||||
static DECLFW(Mapper294_writeOuterBank) {
|
||||
if (A &0x100) {
|
||||
latch =latch &7 | V <<3;
|
||||
Mapper294_sync();
|
||||
}
|
||||
}
|
||||
|
||||
static void Mapper294_reset(void) {
|
||||
latch =0;
|
||||
Mapper294_sync();
|
||||
}
|
||||
|
||||
static void Mapper294_power(void) {
|
||||
Mapper294_reset();
|
||||
SetReadHandler(0x8000, 0xFFFF, CartBR);
|
||||
SetWriteHandler(0x8000, 0xFFFF, Mapper294_writeInnerBank);
|
||||
SetWriteHandler(0x4020, 0x7FFF, Mapper294_writeOuterBank);
|
||||
}
|
||||
|
||||
void Mapper294_Init(CartInfo *info) {
|
||||
info->Power = Mapper294_power;
|
||||
info->Reset = Mapper294_reset;
|
||||
AddExState(&latch, 1, 0, "LATC");
|
||||
}
|
||||
@@ -706,7 +706,7 @@ INES_BOARD_BEGIN()
|
||||
INES_BOARD( "Kasheng 2-in-1 ", 291, Mapper291_Init )
|
||||
INES_BOARD( "DRAGONFIGHTER", 292, UNLBMW8544_Init )
|
||||
INES_BOARD( "NewStar 12-in-1/7-in-1", 293, Mapper293_Init )
|
||||
INES_BOARD( "MMC3 BMC PIRATE", 294, Mapper134_Init ) /* nesdev redirects this as mapper 134 */
|
||||
INES_BOARD( "63-1601 ", 294, Mapper294_Init )
|
||||
INES_BOARD( "YY860216C", 295, Mapper295_Init )
|
||||
INES_BOARD( "TXC 01-22110-000", 297, Mapper297_Init )
|
||||
INES_BOARD( "TF1201", 298, UNLTF1201_Init )
|
||||
|
||||
@@ -262,6 +262,7 @@ void Mapper269_Init(CartInfo *);
|
||||
void Mapper271_Init(CartInfo *);
|
||||
void Mapper288_Init(CartInfo *);
|
||||
void Mapper293_Init(CartInfo *);
|
||||
void Mapper294_Init(CartInfo *);
|
||||
void Mapper297_Init(CartInfo *);
|
||||
void Mapper310_Init(CartInfo *);
|
||||
void Mapper319_Init(CartInfo *);
|
||||
|
||||
Reference in New Issue
Block a user