()
| 153 | func (i instruction) c() int { return int(i >> posC & maxArgC) } |
| 154 | func (i instruction) bx() int { return int(i >> posBx & maxArgBx) } |
| 155 | func (i instruction) ax() int { return int(i >> posAx & maxArgAx) } |
| 156 | func (i instruction) sbx() int { return int(i>>posBx&maxArgBx) - maxArgSBx } |
| 157 | |
| 158 | func (i *instruction) setA(arg int) { i.setArg(posA, sizeA, arg) } |
no outgoing calls
no test coverage detected