MCPcopy Create free account
hub / github.com/djhworld/simple-computer / ScreenControl

Struct ScreenControl

io/display.go:155–165  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

153}
154
155type ScreenControl struct {
156 adapter *DisplayAdapter
157 inputBus *components.Bus
158 outputChan chan *[160][240]byte
159
160 clock <-chan time.Time
161 quit chan bool
162
163 //y, x
164 output [160][240]byte
165}
166
167func NewScreenControl(adapter *DisplayAdapter, outputChan chan *[160][240]byte, quit chan bool) *ScreenControl {
168 s := new(ScreenControl)

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected