(op int, a int, bx int)
| 228 | } |
| 229 | |
| 230 | func opCreateABx(op int, a int, bx int) uint32 { |
| 231 | var inst uint32 = 0 |
| 232 | opSetOpCode(&inst, op) |
| 233 | opSetArgA(&inst, a) |
| 234 | opSetArgBx(&inst, bx) |
| 235 | return inst |
| 236 | } |
| 237 | |
| 238 | func opCreateASbx(op int, a int, sbx int) uint32 { |
| 239 | var inst uint32 = 0 |
no test coverage detected
searching dependent graphs…