ALUOpConstant executes A = A Val.
| 400 | |
| 401 | // ALUOpConstant executes A = A <Op> Val. |
| 402 | type ALUOpConstant struct { |
| 403 | Op ALUOp |
| 404 | Val uint32 |
| 405 | } |
| 406 | |
| 407 | // Assemble implements the Instruction Assemble method. |
| 408 | func (a ALUOpConstant) Assemble() (RawInstruction, error) { |
nothing calls this directly
no outgoing calls
no test coverage detected