| 7 | ) |
| 8 | |
| 9 | type Mapper40 struct { |
| 10 | *Cartridge |
| 11 | console *Console |
| 12 | bank int |
| 13 | cycles int |
| 14 | } |
| 15 | |
| 16 | func NewMapper40(console *Console, cartridge *Cartridge) Mapper { |
| 17 | return &Mapper40{cartridge, console, 0, 0} |
nothing calls this directly
no outgoing calls
no test coverage detected