LoadScratch loads scratch[N] into register Dst.
| 206 | |
| 207 | // LoadScratch loads scratch[N] into register Dst. |
| 208 | type LoadScratch struct { |
| 209 | Dst Register |
| 210 | N int // 0-15 |
| 211 | } |
| 212 | |
| 213 | // Assemble implements the Instruction Assemble method. |
| 214 | func (a LoadScratch) Assemble() (RawInstruction, error) { |
nothing calls this directly
no outgoing calls
no test coverage detected