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