| 322 | } |
| 323 | |
| 324 | type XORer struct { |
| 325 | inputs [arch.BUS_WIDTH * 2]circuit.Wire |
| 326 | gates [arch.BUS_WIDTH]circuit.XORGate |
| 327 | outputs [arch.BUS_WIDTH]circuit.Wire |
| 328 | next Component |
| 329 | } |
| 330 | |
| 331 | func NewXORer() *XORer { |
| 332 | o := new(XORer) |
nothing calls this directly
no outgoing calls
no test coverage detected