(op opCode, a, bx int)
| 170 | } |
| 171 | |
| 172 | func createABx(op opCode, a, bx int) instruction { |
| 173 | return instruction(op)<<posOp | |
| 174 | instruction(a)<<posA | |
| 175 | instruction(bx)<<posBx |
| 176 | } |
| 177 | |
| 178 | func createAx(op opCode, a int) instruction { return instruction(op)<<posOp | instruction(a)<<posAx } |
| 179 |
no test coverage detected