summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorJordan Wiens <jordan@psifertex.com>2017-10-30 21:21:48 -0400
committerJordan Wiens <jordan@psifertex.com>2017-10-30 21:21:48 -0400
commita774e47ee36a5d4418c9aec13e5612f158a825d3 (patch)
tree23c3cf08605c8d09c4d0dbb4ee9e5072db0bedb9 /docs
parentc396d2cfb3682cb4c152b9dba6f866f6783e4a80 (diff)
add current_llil and current_mlil scripting console aliases
Diffstat (limited to 'docs')
-rw-r--r--docs/getting-started.md2
1 files changed, 2 insertions, 0 deletions
diff --git a/docs/getting-started.md b/docs/getting-started.md
index 692c1e67..39809747 100644
--- a/docs/getting-started.md
+++ b/docs/getting-started.md
@@ -210,6 +210,8 @@ By default the interactive python prompt has a number of convenient helper funct
- `bv` / `current_view` / : the current [BinaryView](https://api.binary.ninja/binaryninja.BinaryView.html)
- `current_function`: the current [Function](https://api.binary.ninja/binaryninja.Function.html)
- `current_basic_block`: the current [BasicBlock](https://api.binary.ninja/binaryninja.BasicBlock.html)
+- `current_llil`: the current [LowLevelILBasicBlock](https://api.binary.ninja/binaryninja.lowlevelil.LowLevelILBasicBlock.html)
+- `current_mlil`: the current [MediumLevelILBasicBlock](https://api.binary.ninja/binaryninja.mediumlevelil.MediumLevelILBasicBlock.html)
- `current_selection`: a tuple of the start and end addresses of the current selection
- `write_at_cursor(data)`: function that writes data to the start of the current selection
- `get_selected_data()`: function that returns the data in the current selection