notaz.gp2x.de
/
fceu.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
098 renderer added
[fceu.git]
/
mappers
/
184.c
1
#include "mapinc.h"
2
3
4
5
DECLFW(Mapper184_write)
6
{
7
VROM_BANK4(0x0000,V);
8
VROM_BANK4(0x1000,(V>>4));
9
}
10
11
void Mapper184_init(void)
12
{
13
SetWriteHandler(0x6000,0xffff,Mapper184_write);
14
}
15