diff options
Diffstat (limited to 'src/arch/x86/opcodes.h')
-rw-r--r-- | src/arch/x86/opcodes.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/arch/x86/opcodes.h b/src/arch/x86/opcodes.h index d6be6a1..f847b48 100644 --- a/src/arch/x86/opcodes.h +++ b/src/arch/x86/opcodes.h @@ -32,6 +32,15 @@ +/* Décode une instruction de type 'dec'. */ +asm_x86_instr *read_instr_dec_1632(const uint8_t *, off_t *, off_t); + +/* Décode une instruction de type 'hlt'. */ +asm_x86_instr *read_instr_hlt(const uint8_t *, off_t *, off_t); + +/* Décode une instruction de type 'inc'. */ +asm_x86_instr *read_instr_inc_1632(const uint8_t *, off_t *, off_t); + /* Décode une instruction de type 'int'. */ asm_x86_instr *read_instr_int(const uint8_t *, off_t *, off_t); @@ -41,6 +50,12 @@ asm_x86_instr *read_instr_mov_to_1632(const uint8_t *, off_t *, off_t); /* Décode une instruction de type 'nop'. */ asm_x86_instr *read_instr_nop(const uint8_t *, off_t *, off_t); +/* Décode une instruction de type 'pop' (16 ou 32 bits). */ +asm_x86_instr *read_instr_pop_1632(const uint8_t *, off_t *, off_t); + +/* Décode une instruction de type 'push' (16 ou 32 bits). */ +asm_x86_instr *read_instr_push_1632(const uint8_t *, off_t *, off_t); + #endif /* _ARCH_X86_OPCODES_H */ |