summaryrefslogtreecommitdiff
path: root/python/__init__.py
diff options
context:
space:
mode:
authorJordan Wiens <jordan@psifertex.com>2016-08-31 02:33:48 -0400
committerJordan Wiens <jordan@psifertex.com>2016-08-31 02:33:48 -0400
commit548b906badf83e500551522a87242fefbc582d2c (patch)
tree55fa6890f8b5c91c7f9841cea4450c9d9975666c /python/__init__.py
parentb84ab8966522eb5063e6a213ca1e48d32e0fd090 (diff)
fix table of branch types
Diffstat (limited to 'python/__init__.py')
-rw-r--r--python/__init__.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/python/__init__.py b/python/__init__.py
index fa8ff02c..b8a87aff 100644
--- a/python/__init__.py
+++ b/python/__init__.py
@@ -6046,9 +6046,9 @@ class Architecture(object):
:py:Class:`InstructionInfo` object. The InstructionInfo object should have the length of the current instruction.
If the instruction is a branch instruction the method should add a branch of the proper type:
- ===================== =================================================
+ ===================== ===================================================
BranchType Description
- ===================== =================================================
+ ===================== ===================================================
UnconditionalBranch Branch will alwasy be taken
FalseBranch False branch condition
TrueBranch True branch condition
@@ -6057,7 +6057,7 @@ class Architecture(object):
SystemCall System call instruction
IndirectBranch Branch destination is a memory address or register
UnresolvedBranch Call instruction that isn't
- ===================== ==================================================
+ ===================== ===================================================
:param str data: bytes to decode
:param int addr: virtual address of the byte to be decoded