| 6 | ) |
| 7 | |
| 8 | type Mapper1 struct { |
| 9 | *Cartridge |
| 10 | shiftRegister byte |
| 11 | control byte |
| 12 | prgMode byte |
| 13 | chrMode byte |
| 14 | prgBank byte |
| 15 | chrBank0 byte |
| 16 | chrBank1 byte |
| 17 | prgOffsets [2]int |
| 18 | chrOffsets [2]int |
| 19 | } |
| 20 | |
| 21 | func NewMapper1(cartridge *Cartridge) Mapper { |
| 22 | m := Mapper1{} |
nothing calls this directly
no outgoing calls
no test coverage detected