You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Following the documentation and tutorial related to event, it seems that mem_access is not currently accessible for write fashion from Python bindings.
defmem_written_callback(m: MaatEngine):
print(f"Writing mem at {m.info.mem_access.addr}")
print(f"Current value {m.mem.read(m.info.mem_access.addr, m.info.mem_access.size)}"print(f"New value {m.info.mem_access.value}")
m.info.mem_access.value=0xdeadbeef# does not take count of size, just for the example.
As a result:
AttributeError: attribute 'value' of 'MemAccess' objects is not writable
Thanks you,
The text was updated successfully, but these errors were encountered:
Boyan-MILANOV
changed the title
Attribute mem_access not accessible from python bindings
Attribute value of mem_access not writable
Oct 6, 2022
Hello,
Following the documentation and tutorial related to event, it seems that
mem_access
is not currently accessible for write fashion from Python bindings.As a result:
Thanks you,
The text was updated successfully, but these errors were encountered: