mirror of
https://github.com/ivanizag/izapple2.git
synced 2024-10-31 20:09:02 +00:00
38 lines
880 B
Go
38 lines
880 B
Go
package izapple2
|
|
|
|
import (
|
|
"fmt"
|
|
)
|
|
|
|
/*
|
|
Logger card. It never existed, I use it to trace accesses to the card.
|
|
*/
|
|
|
|
// CardLogger is a fake card to log soft switch invocations
|
|
type CardLogger struct {
|
|
cardBase
|
|
}
|
|
|
|
func newCardLoggerBuilder() *cardBuilder {
|
|
return &cardBuilder{
|
|
name: "Softswitch logger card",
|
|
description: "Card to log softswitch accesses",
|
|
buildFunc: func(params map[string]string) (Card, error) {
|
|
return &CardLogger{}, nil
|
|
},
|
|
}
|
|
}
|
|
|
|
func (c *CardLogger) assign(a *Apple2, slot int) {
|
|
c.addCardSoftSwitches(func(address uint8, data uint8, write bool) uint8 {
|
|
if write {
|
|
fmt.Printf("[cardLogger] Write access to softswith 0x%x for slot %v, value 0x%02x.\n", address, slot, data)
|
|
} else {
|
|
fmt.Printf("[cardLogger] Read access to softswith 0x%x for slot %v.\n", address, slot)
|
|
}
|
|
return 0
|
|
}, "LOGGER")
|
|
|
|
c.cardBase.assign(a, slot)
|
|
}
|