mapper fixes for ncpu, debug is broken atm
[fceu.git] / mappers / 180.c
CommitLineData
c62d2810 1#include "mapinc.h"
2
3
4
5DECLFW(Mapper180_write)
6{
c0bf6f9f 7 ROM_BANK16(0xC000,V);
8 X6502_Rebase();
c62d2810 9}
10
11void Mapper180_init(void)
12{
13 SetWriteHandler(0x8000,0xffff,Mapper180_write);
14}
15