summaryrefslogtreecommitdiff
path: root/plugins/pychrysalide/arch/operands/module.c
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2020-02-04 12:23:04 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2020-02-04 12:23:04 (GMT)
commitec0f07c0b9468d6798befd887b02d9668faf806b (patch)
treef8b243f9b08006a4206b29b9af5b73a5d25361c7 /plugins/pychrysalide/arch/operands/module.c
parent296b4ed15fd074f80266e1d22ef4ade7ee11905e (diff)
Created a new interface for renamed operands.
Diffstat (limited to 'plugins/pychrysalide/arch/operands/module.c')
-rw-r--r--plugins/pychrysalide/arch/operands/module.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/plugins/pychrysalide/arch/operands/module.c b/plugins/pychrysalide/arch/operands/module.c
index f800e38..34614b3 100644
--- a/plugins/pychrysalide/arch/operands/module.c
+++ b/plugins/pychrysalide/arch/operands/module.c
@@ -30,6 +30,7 @@
#include "immediate.h"
#include "register.h"
+#include "rename.h"
#include "targetable.h"
#include "../../helpers.h"
@@ -97,7 +98,10 @@ bool populate_arch_operands_module(void)
result = true;
if (result) result = ensure_python_imm_operand_is_registered();
+ if (result) result = ensure_python_known_imm_operand_is_registered();
if (result) result = ensure_python_register_operand_is_registered();
+ if (result) result = ensure_python_renamed_operand_is_registered();
+ if (result) result = ensure_python_renameable_operand_is_registered();
if (result) result = ensure_python_targetable_operand_is_registered();
assert(result);