LoadConstant loads Val into register Dst.
| 183 | |
| 184 | // LoadConstant loads Val into register Dst. |
| 185 | type LoadConstant struct { |
| 186 | Dst Register |
| 187 | Val uint32 |
| 188 | } |
| 189 | |
| 190 | // Assemble implements the Instruction Assemble method. |
| 191 | func (a LoadConstant) Assemble() (RawInstruction, error) { |
nothing calls this directly
no outgoing calls
no test coverage detected