https://github.com/asfdfdfd/fceux/blob/master/src/boards/225.cpp https://wiki.nesdev.com/w/index.php/INES_Mapper_225
| 9 | // https://wiki.nesdev.com/w/index.php/INES_Mapper_225 |
| 10 | |
| 11 | type Mapper225 struct { |
| 12 | *Cartridge |
| 13 | chrBank int |
| 14 | prgBank1 int |
| 15 | prgBank2 int |
| 16 | } |
| 17 | |
| 18 | func NewMapper225(cartridge *Cartridge) Mapper { |
| 19 | prgBanks := len(cartridge.PRG) / 0x4000 |
nothing calls this directly
no outgoing calls
no test coverage detected