Apple2-IO-RPi/RaspberryPi/apple2driver/a2io/communication.go
2021-10-31 14:35:55 -04:00

17 lines
301 B
Go

package a2io
type A2Io interface {
Init()
WriteByte(data byte) error
WriteString(outString string) error
WriteBlock(buffer []byte) error
WriteBuffer(buffer []byte) error
ReadByte() (byte, error)
ReadString() (string, error)
ReadBlock(buffer []byte) error
}
type A2Comm struct {
A2Io A2Io
}