summaryrefslogtreecommitdiff
path: root/src/arch/instruction.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/arch/instruction.h')
-rw-r--r--src/arch/instruction.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/arch/instruction.h b/src/arch/instruction.h
index 08f459f..ff0fd4a 100644
--- a/src/arch/instruction.h
+++ b/src/arch/instruction.h
@@ -73,12 +73,18 @@ void g_arch_instruction_set_location(GArchInstruction *, off_t, off_t, vmpa_t);
/* Fournit la localisation d'une instruction. */
void g_arch_instruction_get_location(GArchInstruction *, off_t *, off_t *, vmpa_t *);
-/* Attache une seule opérande à une instruction. */
+/* Attache un seul opérande à une instruction. */
void g_arch_instruction_attach_one_operand(GArchInstruction *, GArchOperand *);
/* Attache deux opérandes à une instruction. */
void g_arch_instruction_attach_two_operands(GArchInstruction *, GArchOperand *, GArchOperand *);
+/* Attache un opérande supplémentaire à une instruction. */
+void g_arch_instruction_attach_extra_operand(GArchInstruction *, GArchOperand *);
+
+/* Détache un opérande liée d'une instruction. */
+void g_arch_instruction_detach_operand(GArchInstruction *, GArchOperand *);
+
/* Traduit une instruction en version humainement lisible. */
char *g_arch_instruction_get_text(const GArchInstruction *, const exe_format *, AsmSyntax);