diff options
Diffstat (limited to 'src/arch')
-rw-r--r-- | src/arch/x86/instruction.c | 19 | ||||
-rw-r--r-- | src/arch/x86/instruction.h | 3 |
2 files changed, 22 insertions, 0 deletions
diff --git a/src/arch/x86/instruction.c b/src/arch/x86/instruction.c index 3cf4a6b..0321e88 100644 --- a/src/arch/x86/instruction.c +++ b/src/arch/x86/instruction.c @@ -403,6 +403,25 @@ GArchInstruction *g_x86_instruction_new(X86Opcodes type) /****************************************************************************** * * +* Paramètres : instr = instruction à consulter. * +* * +* Description : Fournit l'identifiant de l'opcode représenté. * +* * +* Retour : - * +* * +* Remarques : - * +* * +******************************************************************************/ + +X86Opcodes g_x86_instruction_get_opcode(const GX86Instruction *instr) +{ + return instr->type; + +} + + +/****************************************************************************** +* * * Paramètres : instr = instruction à venir compléter. * * prefixes = listes des préfixes rencontrés. * * * diff --git a/src/arch/x86/instruction.h b/src/arch/x86/instruction.h index 2f59c46..d3b68c9 100644 --- a/src/arch/x86/instruction.h +++ b/src/arch/x86/instruction.h @@ -276,6 +276,9 @@ GType g_x86_instruction_get_type(void); /* Crée une instruction pour l'architecture x86. */ GArchInstruction *g_x86_instruction_new(X86Opcodes); +/* Fournit l'identifiant de l'opcode représenté. */ +X86Opcodes g_x86_instruction_get_opcode(const GX86Instruction *); + /* Attache à une instructions ses préfixes associés. */ void g_x86_instruction_set_prefixes(GX86Instruction *, X86Prefix); |