load keys again after plat init
[fceu.git] / mappers / 184.c
CommitLineData
c62d2810 1#include "mapinc.h"
2
3
4
5DECLFW(Mapper184_write)
6{
7VROM_BANK4(0x0000,V);
8VROM_BANK4(0x1000,(V>>4));
9}
10
11void Mapper184_init(void)
12{
13 SetWriteHandler(0x6000,0xffff,Mapper184_write);
14}
15