(inst *uint32, arg int)
| 207 | } |
| 208 | |
| 209 | func opSetArgBx(inst *uint32, arg int) { |
| 210 | *inst = (*inst & 0xfffc0000) | uint32(arg&0x3ffff) |
| 211 | } |
| 212 | |
| 213 | func opGetArgSbx(inst uint32) int { |
| 214 | return opGetArgBx(inst) - opMaxArgSbx |
no outgoing calls
no test coverage detected
searching dependent graphs…