2020-10-03 21:38:26 +00:00
|
|
|
package izapple2
|
2019-11-10 13:20:31 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
Simulates just what is needed to make Total Replay use the GS modes if the VidHD card is found
|
|
|
|
|
|
|
|
See:
|
|
|
|
https://github.com/a2-4am/4cade/blob/master/src/hw.vidhd.a
|
2019-11-11 21:58:42 +00:00
|
|
|
http://www.applelogic.org/files/GSHARDWAREREF.pdf, page 89
|
2019-11-10 13:20:31 +00:00
|
|
|
*/
|
|
|
|
|
2020-10-13 22:26:47 +00:00
|
|
|
// CardVidHD represents a VidHD card
|
|
|
|
type CardVidHD struct {
|
2019-11-10 13:20:31 +00:00
|
|
|
cardBase
|
|
|
|
}
|
|
|
|
|
2020-10-13 22:26:47 +00:00
|
|
|
// NewCardVidHD creates a new VidHD card
|
|
|
|
func NewCardVidHD() *CardVidHD {
|
|
|
|
var c CardVidHD
|
|
|
|
c.name = "VidHD Card"
|
|
|
|
return &c
|
|
|
|
}
|
|
|
|
|
2019-11-10 13:20:31 +00:00
|
|
|
func buildVidHDRom() []uint8 {
|
|
|
|
data := make([]uint8, 256)
|
|
|
|
|
|
|
|
data[0] = 0x24
|
|
|
|
data[1] = 0xEA
|
|
|
|
data[2] = 0x4C
|
|
|
|
|
|
|
|
return data
|
|
|
|
}
|
|
|
|
|
2019-11-11 21:58:42 +00:00
|
|
|
const (
|
|
|
|
ioDataNewVideo uint8 = 0x29
|
|
|
|
)
|
|
|
|
|
2020-10-13 22:26:47 +00:00
|
|
|
func (c *CardVidHD) assign(a *Apple2, slot int) {
|
|
|
|
c.loadRom(buildVidHDRom())
|
|
|
|
|
2019-11-12 22:47:48 +00:00
|
|
|
// The softswitches are outside the card reserved ss
|
2019-11-11 21:58:42 +00:00
|
|
|
a.io.addSoftSwitchR(0x22, notImplementedSoftSwitchR, "VIDHD-TBCOLOR")
|
|
|
|
a.io.addSoftSwitchW(0x22, notImplementedSoftSwitchW, "VIDHD-TBCOLOR")
|
|
|
|
a.io.addSoftSwitchR(0x29, getStatusSoftSwitch(ioDataNewVideo), "VIDHD-NEWVIDEO")
|
|
|
|
a.io.addSoftSwitchW(0x29, setStatusSoftSwitch(ioDataNewVideo), "VIDHD-NEWVIDEO")
|
|
|
|
a.io.addSoftSwitchR(0x34, notImplementedSoftSwitchR, "VIDHD-CLOCKCTL")
|
|
|
|
a.io.addSoftSwitchW(0x34, notImplementedSoftSwitchW, "VIDHD-CLOCKCTL")
|
|
|
|
a.io.addSoftSwitchR(0x35, notImplementedSoftSwitchR, "VIDHD-SHADOW")
|
|
|
|
a.io.addSoftSwitchW(0x35, notImplementedSoftSwitchW, "VIDHD-SHADOW")
|
|
|
|
|
2019-11-10 13:20:31 +00:00
|
|
|
c.cardBase.assign(a, slot)
|
|
|
|
}
|