LoadAbsolute loads packet[Off:Off+Size] as an integer value into register A.
| 233 | // LoadAbsolute loads packet[Off:Off+Size] as an integer value into |
| 234 | // register A. |
| 235 | type LoadAbsolute struct { |
| 236 | Off uint32 |
| 237 | Size int // 1, 2 or 4 |
| 238 | } |
| 239 | |
| 240 | // Assemble implements the Instruction Assemble method. |
| 241 | func (a LoadAbsolute) Assemble() (RawInstruction, error) { |
nothing calls this directly
no outgoing calls
no test coverage detected