LoadC represents the LOAD_C virtual machine opcode.
| 130 | |
| 131 | // LoadC represents the LOAD_C virtual machine opcode. |
| 132 | type LoadC struct { |
| 133 | DataType protocol.Type // The value type to load. |
| 134 | Address uint32 // The pointer to the value in constant address-space. |
| 135 | } |
| 136 | |
| 137 | func (c LoadC) String() string { |
| 138 | return fmt.Sprintf("LoadC(Type: %v, Address: 0x%x)", c.DataType, c.Address) |
nothing calls this directly
no outgoing calls
no test coverage detected