mirror of
https://github.com/dborth/fceugx.git
synced 2024-11-01 06:55:05 +01:00
15 lines
155 B
C
15 lines
155 B
C
#include "mapinc.h"
|
|
|
|
|
|
|
|
DECLFW(Mapper180_write)
|
|
{
|
|
ROM_BANK16(0xC000,V);
|
|
}
|
|
|
|
void Mapper180_init(void)
|
|
{
|
|
SetWriteHandler(0x8000,0xffff,Mapper180_write);
|
|
}
|
|
|