diff options
Diffstat (limited to 'src/arch/x86/op_int.c')
-rw-r--r-- | src/arch/x86/op_int.c | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/src/arch/x86/op_int.c b/src/arch/x86/op_int.c index 3c621d6..69e49ff 100644 --- a/src/arch/x86/op_int.c +++ b/src/arch/x86/op_int.c @@ -32,9 +32,11 @@ /****************************************************************************** * * -* Paramètres : data = flux de données à analyser. * -* pos = position courante dans ce flux. [OUT] * -* len = taille totale des données à analyser. * +* 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. * +* proc = architecture ciblée par le désassemblage. * * * * Description : Décode une instruction de type 'int'. * * * @@ -44,7 +46,7 @@ * * ******************************************************************************/ -asm_x86_instr *read_instr_int(const uint8_t *data, off_t *pos, off_t len) +asm_x86_instr *read_instr_int(const uint8_t *data, off_t *pos, off_t len, uint64_t offset, const asm_x86_processor *proc) { asm_x86_instr *result; /* Instruction à retourner */ asm_x86_operand *syscall; /* Indice de l'appel système */ |