This function refers to the memory.
[Specification format]
csplus.read_memory(session_id, address, length)
|
[Argument(s)]
|
|
session_id
|
This argument is ignored in this version.
|
address
|
The address to read memory at
|
length
|
The number of byte to read
|
[Return value]
The memory value in hexadecimal format at the specified address.
[Detailed description]
- | The byte order in the returned string is same as the byte order in memory regardless endian setting (depend on the endian of IO registers area, the byte order can be different). |
[Example of use]
>>> csplus.read_memory(session_id, 0x0, 1)
'10'
>>>
|