izapple2/cardLogger.go

29 lines
638 B
Go
Raw Normal View History

2020-10-03 21:38:26 +00:00
package izapple2
2019-05-18 21:40:59 +00:00
import (
"fmt"
)
/*
Logger card. It never existed, I use it to trace accesses to the card.
*/
type cardLogger struct {
cardBase
}
func (c *cardLogger) assign(a *Apple2, slot int) {
2019-10-20 22:00:42 +00:00
for i := uint8(0x0); i <= 0xf; i++ {
2019-05-18 21:40:59 +00:00
iCopy := i
2019-10-20 22:00:42 +00:00
c.addCardSoftSwitchR(i, func(*ioC0Page) uint8 {
2019-05-18 21:40:59 +00:00
fmt.Printf("[cardLogger] Read access to softswith 0x%x for slot %v.\n", iCopy, slot)
return 0
2019-10-20 22:00:42 +00:00
}, "LOGGERR")
c.addCardSoftSwitchW(i, func(_ *ioC0Page, value uint8) {
2019-05-18 21:40:59 +00:00
fmt.Printf("[cardLogger] Write access to softswith 0x%x for slot %v, value 0x%v.\n", iCopy, slot, value)
2019-10-20 22:00:42 +00:00
}, "LOGGERW")
2019-05-18 21:40:59 +00:00
}
c.cardBase.assign(a, slot)
}