1 /* FCE Ultra - NES/Famicom Emulator
3 * Copyright notice for this file:
4 * Copyright (C) 2002 Xodnizel
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.
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.
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
24 static void FP_FASTAPASS(1) Mapper50IRQ(int a)
33 X6502_IRQBegin(FCEU_IQEXT);
38 static void M50Restore(int version)
40 setprg8(0xc000,mapbyte1[0]);
45 if((A&0xD060)==0x4020)
51 X6502_IRQEnd(FCEU_IQEXT);
55 V=((V&1)<<2)|((V&2)>>1)|((V&4)>>1)|(V&8);
62 void Mapper50_init(void)
64 SetWriteHandler(0x4020,0x5fff,M50W);
65 SetReadHandler(0x6000,0xffff,CartBR);
66 MapStateRestore=M50Restore;
67 MapIRQHook=Mapper50IRQ;