2017-12-17 13:39:16 +08:00
|
|
|
/* FCE Ultra - NES/Famicom Emulator
|
|
|
|
|
*
|
|
|
|
|
* Copyright notice for this file:
|
|
|
|
|
* Copyright (C) 2005 CaH4e3
|
2022-02-20 06:46:45 +08:00
|
|
|
* Copyright (C) 2020
|
2017-12-17 13:39:16 +08:00
|
|
|
*
|
|
|
|
|
* 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"
|
2020-02-22 21:37:34 +08:00
|
|
|
|
|
|
|
|
static uint8 *CHRRAM;
|
|
|
|
|
static uint32 CHRRAMSIZE;
|
2017-12-17 13:39:16 +08:00
|
|
|
|
|
|
|
|
static uint16 cmdreg;
|
2020-02-22 21:37:34 +08:00
|
|
|
static uint8 unrom, reg, type, openbus;
|
|
|
|
|
|
2017-12-17 13:39:16 +08:00
|
|
|
static SFORMAT StateRegs[] =
|
|
|
|
|
{
|
2020-02-22 21:37:34 +08:00
|
|
|
{ &cmdreg, 2 | FCEUSTATE_RLSB, "CREG" },
|
|
|
|
|
{ &unrom, 1, "UNRM" },
|
|
|
|
|
{ ®, 1, "UNRG" },
|
|
|
|
|
{ &type, 1, "TYPE" },
|
|
|
|
|
{ &openbus, 1, "OPNB" },
|
2017-12-17 13:39:16 +08:00
|
|
|
{ 0 }
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
static void Sync(void) {
|
2020-02-22 21:37:34 +08:00
|
|
|
if (type && unrom) {
|
2020-10-21 21:03:36 +08:00
|
|
|
setprg16(0x8000, 0x80 | (reg & 7));
|
2020-02-22 21:37:34 +08:00
|
|
|
setprg16(0xC000, 0x80 | 7);
|
|
|
|
|
setchr8(0);
|
|
|
|
|
setmirror(MI_V);
|
|
|
|
|
} else {
|
|
|
|
|
uint8 bank = ((cmdreg & 0x300) >> 3) | (cmdreg & 0x1F);
|
|
|
|
|
if (cmdreg & 0x400)
|
|
|
|
|
setmirror(MI_0);
|
|
|
|
|
else
|
|
|
|
|
setmirror(((cmdreg >> 13) & 1) ^ 1);
|
|
|
|
|
if (bank >= PRGsize[0] / 32768)
|
|
|
|
|
openbus = 1;
|
|
|
|
|
else if (cmdreg & 0x800) {
|
|
|
|
|
setprg16(0x8000, (bank << 1) | ((cmdreg >> 12) & 1));
|
|
|
|
|
setprg16(0xC000, (bank << 1) | ((cmdreg >> 12) & 1));
|
|
|
|
|
} else
|
|
|
|
|
setprg32(0x8000, bank);
|
|
|
|
|
setchr8(0);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static DECLFR(M235Read) {
|
|
|
|
|
if (openbus) {
|
|
|
|
|
openbus = 0;
|
|
|
|
|
return X.DB;
|
|
|
|
|
}
|
|
|
|
|
return CartBR(A);
|
2017-12-17 13:39:16 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static DECLFW(M235Write) {
|
|
|
|
|
cmdreg = A;
|
2020-02-22 21:37:34 +08:00
|
|
|
reg = V;
|
|
|
|
|
Sync();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void M235Close(void) {
|
|
|
|
|
if (CHRRAM)
|
2020-02-29 09:52:05 +08:00
|
|
|
FCEU_free(CHRRAM);
|
2020-02-22 21:37:34 +08:00
|
|
|
CHRRAM = NULL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void M235Reset(void) {
|
|
|
|
|
cmdreg = 0;
|
|
|
|
|
unrom = (unrom + type) & 1;
|
2017-12-17 13:39:16 +08:00
|
|
|
Sync();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void M235Power(void) {
|
|
|
|
|
SetWriteHandler(0x8000, 0xFFFF, M235Write);
|
2020-02-22 21:37:34 +08:00
|
|
|
SetReadHandler(0x8000, 0xFFFF, M235Read);
|
2017-12-17 13:39:16 +08:00
|
|
|
cmdreg = 0;
|
|
|
|
|
Sync();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void M235Restore(int version) {
|
|
|
|
|
Sync();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Mapper235_Init(CartInfo *info) {
|
2020-02-22 21:37:34 +08:00
|
|
|
info->Reset = M235Reset;
|
2017-12-17 13:39:16 +08:00
|
|
|
info->Power = M235Power;
|
2020-02-22 21:37:34 +08:00
|
|
|
info->Close = M235Close;
|
2017-12-17 13:39:16 +08:00
|
|
|
GameStateRestore = M235Restore;
|
|
|
|
|
AddExState(&StateRegs, ~0, 0, 0);
|
2020-02-22 21:37:34 +08:00
|
|
|
|
|
|
|
|
/* some nes 2.0 header do can have no chr-ram.
|
|
|
|
|
* one such cart is 210-in-1 and Contra 4-in-1 (212-in-1,212 Hong Kong,Reset Based)(Unl).nes (0x745A6791)
|
|
|
|
|
*/
|
|
|
|
|
if (CHRsize[0] == 0) {
|
|
|
|
|
CHRRAMSIZE = 8192;
|
|
|
|
|
CHRRAM = (uint8*)FCEU_gmalloc(CHRRAMSIZE);
|
|
|
|
|
SetupCartCHRMapping(0, CHRRAM, CHRRAMSIZE, 1);
|
|
|
|
|
AddExState(CHRRAM, CHRRAMSIZE, 0, "CRAM");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type = 0;
|
|
|
|
|
/* carts with unrom game, reset-based */
|
|
|
|
|
if ((info->CRC32) == 0x745A6791) /* 210-in-1 and Contra 4-in-1 (212-in-1,212 Hong Kong,Reset Based)(Unl).nes */
|
|
|
|
|
type = 1;
|
2017-12-17 13:39:16 +08:00
|
|
|
}
|