mirror of
https://github.com/libretro/Genesis-Plus-GX-Wide.git
synced 2024-11-27 18:40:24 +00:00
.added support for Mulan ROM banking protection
This commit is contained in:
parent
fd53f3f568
commit
9db9a8056f
@ -27,7 +27,7 @@
|
||||
|
||||
#include "shared.h"
|
||||
|
||||
#define CART_CNT 26
|
||||
#define CART_CNT 27
|
||||
|
||||
extern int emulate_address_error;
|
||||
|
||||
@ -73,6 +73,8 @@ static const T_CART_ENTRY rom_database[CART_CNT] =
|
||||
{0x4f10,0x0836,0x00,0x00,{{0x00,0x00,0x00,0x00},{0x000000,0x000000,0x000000,0x000000},{0x000000,0x000000,0x000000,0x000000},0,1,radica_mapper_r,NULL,NULL,NULL}},
|
||||
/* RADICA (Volume 1) */
|
||||
{0xf424,0x9f82,0x00,0x00,{{0x00,0x00,0x00,0x00},{0x000000,0x000000,0x000000,0x000000},{0x000000,0x000000,0x000000,0x000000},0,1,radica_mapper_r,NULL,NULL,NULL}},
|
||||
/* Mulan */
|
||||
{0x0404,0x1b40,0x60,0x7f,{{0x00,0x00,0x00,0x00},{0x000000,0x000000,0x000000,0x000000},{0x000000,0x000000,0x000000,0x000000},0,1,NULL,NULL,NULL,special_regs_w}},
|
||||
/* Lion King 3 */
|
||||
{0x0000,0x507c,0x60,0x7f,{{0x00,0x00,0x00,0x00},{0xf0000e,0xf0000e,0xf0000e,0x000000},{0x600000,0x600002,0x600004,0x000000},0,1,NULL,NULL,default_regs_r,special_regs_w}},
|
||||
/* Super King Kong 99 */
|
||||
|
@ -870,7 +870,7 @@ void m68k_run (unsigned int cycles)
|
||||
USE_CYCLES(CYC_INSTRUCTION[REG_IR]);
|
||||
}
|
||||
#ifdef LOGVDP
|
||||
error("[%d(%d)][%d(%d)] IRQ Level = %d(0x%02x) (%x)\n", v_counter, mcycles_68k/3420, mcycles_68k, mcycles_68k%3420,CPU_INT_LEVEL,FLAG_INT_MASK,m68k_get_reg (NULL, M68K_REG_PC));
|
||||
error("[%d(%d)][%d(%d)] IRQ Level = %d(0x%02x) (%x)\n", v_counter, mcycles_68k/3420, mcycles_68k, mcycles_68k%3420,CPU_INT_LEVEL>>8,FLAG_INT_MASK,m68k_get_reg (NULL, M68K_REG_PC));
|
||||
#endif
|
||||
/* update internal interrupt level */
|
||||
m68ki_check_interrupts();
|
||||
|
Loading…
Reference in New Issue
Block a user