diff options
author | Cyrille Bagard <nocbos@gmail.com> | 2015-07-24 21:53:29 (GMT) |
---|---|---|
committer | Cyrille Bagard <nocbos@gmail.com> | 2015-07-24 21:53:29 (GMT) |
commit | 0bd8f885b20c1d660507c62e35410e2e5a958066 (patch) | |
tree | 10c92cdaa52235f9f4ab1b7b4a51b881a7eba800 /src/arch | |
parent | 156d2e2f6beda2302552ac79678494d914fda05b (diff) |
Applied or canceled the effect of collected items on a given binary.
git-svn-id: svn://svn.gna.org/svn/chrysalide/trunk@556 abbe820e-26c8-41b2-8c08-b7b2b41f8b0a
Diffstat (limited to 'src/arch')
-rw-r--r-- | src/arch/immediate.h | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/src/arch/immediate.h b/src/arch/immediate.h index 6d1d62e..2393b49 100644 --- a/src/arch/immediate.h +++ b/src/arch/immediate.h @@ -40,10 +40,13 @@ /* Grande ligne d'un format d'affichage */ typedef enum _ImmOperandDisplay { - IOD_CHAR, - IOD_DEC, - IOD_HEX, - IOD_OCT + IOD_BIN, /* Impression en binaire */ + IOD_OCT, /* Impression en octal */ + IOD_DEC, /* Impression en décimal */ + IOD_HEX, /* Impression en hexadécimal */ + IOD_CHAR, /* Impression en base 26 */ + + IOD_COUNT } ImmOperandDisplay; @@ -97,7 +100,7 @@ void g_imm_operand_pad(GImmOperand *, bool); bool g_imm_operand_does_padding(const GImmOperand *); /* Définit la grande ligne du format textuel de la valeur. */ -void g_imm_operand_set_display(GImmOperand *operand, ImmOperandDisplay display); +void g_imm_operand_set_display(GImmOperand *, ImmOperandDisplay); /* Indique la grande ligne du format textuel de la valeur. */ ImmOperandDisplay g_imm_operand_get_display(const GImmOperand *); |