microprobe.code.address.MemoryValue

class MemoryValue(address: Address, value: int | float, length: int)[source]

Bases: object

Class to represent a value in memory.

__init__(address: Address, value: int | float, length: int)[source]
Parameters:
  • address

  • value

  • length

Methods

__init__(address, value, length)

param address:

Attributes

address

Address of the memory value

length

Length of the memory value (int)

value

Actual memory value (int)




property address

Address of the memory value

Address of the memory value (Address)

property length

Length of the memory value (int)

property value

Actual memory value (int)