izapple2/cardThunderClockPlus.go

59 lines
1.4 KiB
Go
Raw Normal View History

2020-10-03 21:38:26 +00:00
package izapple2
/*
ThunderClock`, real time clock card.
See:
https://ia800706.us.archive.org/22/items/ThunderClock_Plus/ThunderClock_Plus.pdf
https://prodos8.com/docs/technote/01/
https://www.semiee.com/file/backup/NEC-D1990.pdf
uPD1990AC hookup:
bit 0 = data in
bit 1 = CLK
bit 2 = STB
bit 3 = C0
bit 4 = C1
bit 5 = C2
bit 7 = data out
*/
2020-10-13 22:26:47 +00:00
// CardThunderClockPlus represents a ThunderClock+ card
type CardThunderClockPlus struct {
cardBase
2020-10-13 22:26:47 +00:00
microPD1990ac
}
// NewCardThunderClockPlus creates a new CardThunderClockPlus
func NewCardThunderClockPlus() *CardThunderClockPlus {
var c CardThunderClockPlus
c.name = "ThunderClock+ Card"
2020-10-14 19:54:51 +00:00
c.loadRomFromResource("<internal>/ThunderclockPlusROM.bin")
2020-10-13 22:26:47 +00:00
return &c
}
2020-10-13 22:26:47 +00:00
func (c *CardThunderClockPlus) assign(a *Apple2, slot int) {
2019-10-20 22:00:42 +00:00
c.addCardSoftSwitchR(0, func(*ioC0Page) uint8 {
bit := c.microPD1990ac.out()
// Get the next data bit from uPD1990AC on the MSB
if bit {
return 0x80
}
return 0
2019-10-20 22:00:42 +00:00
}, "THUNDERCLOCKR")
2019-10-20 22:00:42 +00:00
c.addCardSoftSwitchW(0, func(_ *ioC0Page, value uint8) {
dataIn := (value & 0x01) == 1
clock := ((value >> 1) & 0x01) == 1
strobe := ((value >> 2) & 0x01) == 1
command := (value >> 3) & 0x07
/* fmt.Printf("[cardThunderClock] dataIn %v, clock %v, strobe %v, command %v.\n",
dataIn, clock, strobe, command) */
c.microPD1990ac.in(clock, strobe, command, dataIn)
2019-10-20 22:00:42 +00:00
}, "THUNDERCLOCKW")
c.cardBase.assign(a, slot)
}