(inst uint32)
| 203 | } |
| 204 | |
| 205 | func opGetArgBx(inst uint32) int { |
| 206 | return int(inst & 0x3ffff) |
| 207 | } |
| 208 | |
| 209 | func opSetArgBx(inst *uint32, arg int) { |
| 210 | *inst = (*inst & 0xfffc0000) | uint32(arg&0x3ffff) |
no outgoing calls
no test coverage detected
searching dependent graphs…