LoadIndirect loads packet[X+Off:X+Off+Size] as an integer value into register A.
| 262 | // LoadIndirect loads packet[X+Off:X+Off+Size] as an integer value |
| 263 | // into register A. |
| 264 | type LoadIndirect struct { |
| 265 | Off uint32 |
| 266 | Size int // 1, 2 or 4 |
| 267 | } |
| 268 | |
| 269 | // Assemble implements the Instruction Assemble method. |
| 270 | func (a LoadIndirect) Assemble() (RawInstruction, error) { |
nothing calls this directly
no outgoing calls
no test coverage detected