summaryrefslogtreecommitdiff
path: root/python
diff options
context:
space:
mode:
authorJordan Wiens <jordan@psifertex.com>2017-03-22 19:27:52 -0400
committerJordan Wiens <jordan@psifertex.com>2017-03-22 19:27:52 -0400
commitb7509f379376a828b99cf71294b74d4f47ddbf91 (patch)
treefbd378985ace33ea367f2ac37e956dab09ed7668 /python
parent0bd89e8ea8eecc0ed8bf46f4a0241cc8f821d056 (diff)
update documentation for get_instruction_low_level_il
Diffstat (limited to 'python')
-rw-r--r--python/architecture.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/python/architecture.py b/python/architecture.py
index 079d3f5f..d3778613 100644
--- a/python/architecture.py
+++ b/python/architecture.py
@@ -1177,6 +1177,9 @@ class Architecture(object):
``get_instruction_low_level_il`` appends LowLevelILExpr objects to ``il`` for the instruction at the given
virtual address ``addr`` with data ``data``.
+ This is used to analyze arbitrary data at an address, if you are working with an existing binary, you likely
+ want to be using ``Function.get_low_level_il_at``.
+
:param str data: max_instruction_length bytes from the binary at virtual address ``addr``
:param int addr: virtual address of bytes in ``data``
:param LowLevelILFunction il: The function the current instruction belongs to