mapper fixes for ncpu, debug is broken atm
[fceu.git] / mappers / 184.c
1 #include "mapinc.h"
2
3
4
5 DECLFW(Mapper184_write)
6 {
7 VROM_BANK4(0x0000,V);
8 VROM_BANK4(0x1000,(V>>4));
9 }
10
11 void Mapper184_init(void)
12 {
13   SetWriteHandler(0x6000,0xffff,Mapper184_write);
14 }
15