notaz.gp2x.de
/
fceu.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
usbjoy fix
[fceu.git]
/
mappers
/
180.c
1
#include "mapinc.h"
2
3
4
5
DECLFW(Mapper180_write)
6
{
7
ROM_BANK16(0xC000,V);
8
}
9
10
void Mapper180_init(void)
11
{
12
SetWriteHandler(0x8000,0xffff,Mapper180_write);
13
}
14