| 6 | ) |
| 7 | |
| 8 | type Mapper3 struct { |
| 9 | *Cartridge |
| 10 | chrBank int |
| 11 | prgBank1 int |
| 12 | prgBank2 int |
| 13 | } |
| 14 | |
| 15 | func NewMapper3(cartridge *Cartridge) Mapper { |
| 16 | prgBanks := len(cartridge.PRG) / 0x4000 |
nothing calls this directly
no outgoing calls
no test coverage detected