summaryrefslogtreecommitdiff
path: root/src/arch/x86/op_leave.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/arch/x86/op_leave.c')
-rw-r--r--src/arch/x86/op_leave.c11
1 files changed, 5 insertions, 6 deletions
diff --git a/src/arch/x86/op_leave.c b/src/arch/x86/op_leave.c
index 550d4dc..05d347a 100644
--- a/src/arch/x86/op_leave.c
+++ b/src/arch/x86/op_leave.c
@@ -34,7 +34,8 @@
* Paramètres : data = flux de données à analyser. *
* pos = position courante dans ce flux. [OUT] *
* len = taille totale des données à analyser. *
-* offset = adresse virtuelle de l'instruction. *
+* addr = adresse virtuelle de l'instruction. *
+* prefix = éventuel(s) préfixe(s) remarqué(s). *
* proc = architecture ciblée par le désassemblage. *
* *
* Description : Décode une instruction de type 'leave'. *
@@ -45,13 +46,11 @@
* *
******************************************************************************/
-asm_x86_instr *x86_read_instr_leave(const uint8_t *data, off_t *pos, off_t len, uint64_t offset, const asm_x86_processor *proc)
+GArchInstruction *x86_read_instr_leave(const bin_t *data, off_t *pos, off_t len, vmpa_t addr, X86Prefix prefix, const GX86Processor *proc)
{
- asm_x86_instr *result;
+ GArchInstruction *result; /* Instruction à retourner */
- result = (asm_x86_instr *)calloc(1, sizeof(asm_x86_instr));
-
- ASM_INSTRUCTION(result)->opcode = data[(*pos)++];
+ result = g_x86_instruction_new(XOP_LEAVE);
return result;