setup the skeletal structure for Eq, Comp and Gate.

implement strip/bus eq on commands.
This commit is contained in:
2026-02-01 15:09:38 +00:00
parent c4a86adf14
commit 89ab8ee258
7 changed files with 239 additions and 12 deletions

View File

@@ -4,13 +4,19 @@ import "fmt"
type Strip struct {
baseAddress string
client Client
client *Client
Gate *Gate
Eq *Eq
Comp *Comp
}
func NewStrip(c Client) *Strip {
func NewStrip(c *Client) *Strip {
return &Strip{
baseAddress: c.addressMap["strip"],
client: c,
Gate: newGate(c),
Eq: newEqForStrip(c),
Comp: newCompForStrip(c),
}
}