LoadV represents the LOAD_V virtual machine opcode.
| 145 | |
| 146 | // LoadV represents the LOAD_V virtual machine opcode. |
| 147 | type LoadV struct { |
| 148 | DataType protocol.Type // The value type to load. |
| 149 | Address uint32 // The pointer to the value in volatile address-space. |
| 150 | } |
| 151 | |
| 152 | func (c LoadV) String() string { |
| 153 | return fmt.Sprintf("LoadV(Type: %v, Address: 0x%x)", c.DataType, c.Address) |
nothing calls this directly
no outgoing calls
no test coverage detected