diff options
| author | Cyrille Bagard <nocbos@gmail.com> | 2016-10-29 11:37:13 (GMT) | 
|---|---|---|
| committer | Cyrille Bagard <nocbos@gmail.com> | 2016-10-29 11:37:13 (GMT) | 
| commit | 38e455ebbbbf90ddbf552f95a1dfb3c544907587 (patch) | |
| tree | c6e2a4763baef01c87dd0954116fb2c457e10c23 /src/arch/arm/v7/instruction.h | |
| parent | 8c71b36d401b2473342daddcb9b7eb4b83ba3295 (diff) | |
Reduced once again the size of the main instruction structure.
Diffstat (limited to 'src/arch/arm/v7/instruction.h')
| -rw-r--r-- | src/arch/arm/v7/instruction.h | 3 | 
1 files changed, 3 insertions, 0 deletions
diff --git a/src/arch/arm/v7/instruction.h b/src/arch/arm/v7/instruction.h index 291f2c9..5d79cb8 100644 --- a/src/arch/arm/v7/instruction.h +++ b/src/arch/arm/v7/instruction.h @@ -55,6 +55,9 @@ GType g_armv7_instruction_get_type(void);  /* Crée une instruction pour l'architecture ARMv7. */  GArchInstruction *g_armv7_instruction_new(const char *); +/* Précise l'encodage d'une instruction ARMv7 dans le détail. */ +void g_armv7_instruction_set_encoding(GArmV7Instruction *, const char *); +  /* Définit si une instruction ARMv7 met à jour les drapeaux. */  bool g_armv7_instruction_define_setflags(GArmV7Instruction *, bool);  | 
