| 7 | ) |
| 8 | |
| 9 | type Stepper struct { |
| 10 | bits [12]Bit |
| 11 | reset circuit.Wire |
| 12 | resetNotGate circuit.NOTGate |
| 13 | clockIn circuit.Wire |
| 14 | clockInNotGate circuit.NOTGate |
| 15 | inputOrGates [2]circuit.ORGate |
| 16 | outputs [7]circuit.Wire |
| 17 | outputAndGates [5]circuit.ANDGate |
| 18 | outputOrGate circuit.ORGate |
| 19 | outputNotGates [6]circuit.NOTGate |
| 20 | } |
| 21 | |
| 22 | func NewStepper() *Stepper { |
| 23 | s := new(Stepper) |
nothing calls this directly
no outgoing calls
no test coverage detected