central-arch/pkg/subsystem/subsystem.go

7 lines
151 B
Go
Raw Normal View History

2024-11-01 10:54:59 +00:00
package subsystem
type Subsystem interface {
Read(register uint8, cmd uint8) (uint32, error)
Write(register uint8, cmd uint8, value uint32) error
}