-
Notifications
You must be signed in to change notification settings - Fork 20
/
mapper_cbs.go
198 lines (164 loc) · 4.65 KB
/
mapper_cbs.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
// This file is part of Gopher2600.
//
// Gopher2600 is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// Gopher2600 is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with Gopher2600. If not, see <https://www.gnu.org/licenses/>.
package cartridge
import (
"fmt"
"github.com/jetsetilly/gopher2600/errors"
"github.com/jetsetilly/gopher2600/hardware/memory/bus"
"github.com/jetsetilly/gopher2600/hardware/memory/cartridge/banks"
"github.com/jetsetilly/gopher2600/hardware/memory/memorymap"
)
type cbs struct {
mappingID string
description string
// cbs cartridges have 3 banks of 4096 bytes
bankSize int
banks [][]uint8
// identifies the currently selected bank
bank int
// CBS cartridges always have a RAM area
ram []uint8
}
func newCBS(data []byte) (cartMapper, error) {
cart := &cbs{
mappingID: "FA",
description: "CBS",
bankSize: 4096,
ram: make([]uint8, 256),
}
if len(data) != cart.bankSize*cart.NumBanks() {
return nil, errors.New(errors.CartridgeError, fmt.Sprintf("%s: wrong number of bytes in the cartridge data", cart.mappingID))
}
cart.banks = make([][]uint8, cart.NumBanks())
for k := 0; k < cart.NumBanks(); k++ {
cart.banks[k] = make([]uint8, cart.bankSize)
offset := k * cart.bankSize
copy(cart.banks[k], data[offset:offset+cart.bankSize])
}
cart.Initialise()
return cart, nil
}
func (cart cbs) String() string {
return fmt.Sprintf("%s [%s] Bank: %d", cart.mappingID, cart.description, cart.bank)
}
// ID implements the cartMapper interface
func (cart cbs) ID() string {
return cart.mappingID
}
// Initialise implements the cartMapper interface
func (cart *cbs) Initialise() {
cart.bank = len(cart.banks) - 1
for i := range cart.ram {
cart.ram[i] = 0x00
}
}
// Read implements the cartMapper interface
func (cart *cbs) Read(addr uint16, passive bool) (uint8, error) {
if cart.hotspot(addr, passive) {
return 0, nil
}
if addr >= 0x0100 && addr <= 0x01ff {
return cart.ram[addr-0x100], nil
}
data := cart.banks[cart.bank][addr]
return data, nil
}
// Write implements the cartMapper interface
func (cart *cbs) Write(addr uint16, data uint8, passive bool, poke bool) error {
if cart.hotspot(addr, passive) {
return nil
}
if addr <= 0x00ff {
cart.ram[addr] = data
return nil
}
if poke {
cart.banks[cart.bank][addr] = data
return nil
}
return errors.New(errors.MemoryBusError, addr)
}
// bankswitch on hotspot access
func (cart *cbs) hotspot(addr uint16, passive bool) bool {
if addr >= 0x0ff8 && addr <= 0xffa {
if passive {
return true
}
if addr == 0x0ff8 {
cart.bank = 0
} else if addr == 0x0ff9 {
cart.bank = 1
} else if addr == 0x0ffa {
cart.bank = 2
}
return true
}
return false
}
// NumBanks implements the cartMapper interface
func (cart cbs) NumBanks() int {
return 3
}
// GetBank implements the cartMapper interface
func (cart cbs) GetBank(addr uint16) banks.Details {
// cbs cartridges are like atari cartridges in that the entire address
// space points to the selected bank
return banks.Details{Number: cart.bank, IsRAM: addr <= 0x00ff}
}
// Patch implements the cartMapper interface
func (cart *cbs) Patch(offset int, data uint8) error {
if offset >= cart.bankSize*len(cart.banks) {
return errors.New(errors.CartridgePatchOOB, offset)
}
bank := int(offset) / cart.bankSize
offset = offset % cart.bankSize
cart.banks[bank][offset] = data
return nil
}
// Listen implements the cartMapper interface
func (cart *cbs) Listen(_ uint16, _ uint8) {
}
// Step implements the cartMapper interface
func (cart *cbs) Step() {
}
// GetRAM implements the bus.CartRAMBus interface
func (cart cbs) GetRAM() []bus.CartRAM {
r := make([]bus.CartRAM, 1)
r[0] = bus.CartRAM{
Label: "CBS+RAM",
Origin: 0x1080,
Data: make([]uint8, len(cart.ram)),
Mapped: true,
}
copy(r[0].Data, cart.ram)
return r
}
// PutRAM implements the bus.CartRAMBus interface
func (cart *cbs) PutRAM(_ int, idx int, data uint8) {
cart.ram[idx] = data
}
// IterateBank implemnts the disassemble interface
func (cart cbs) IterateBanks(prev *banks.Content) *banks.Content {
b := prev.Number + 1
if b < len(cart.banks) {
return &banks.Content{Number: b,
Data: cart.banks[b],
Origins: []uint16{
memorymap.OriginCart,
},
}
}
return nil
}