diff options
| author | Cyrille Bagard <nocbos@gmail.com> | 2008-07-27 19:38:15 (GMT) | 
|---|---|---|
| committer | Cyrille Bagard <nocbos@gmail.com> | 2008-07-27 19:38:15 (GMT) | 
| commit | 1bf9c5ebe8bb3326e10491974cd43b221e2a56a1 (patch) | |
| tree | 01a745a798661478eb7a6e02c0a0831bb1b4950c /src/arch/instruction-int.h | |
| parent | dbf4d1f93e54251568854bff0ebc9c84f60857f6 (diff) | |
Supported new x86 opcodes (nop and mov).
git-svn-id: svn://svn.gna.org/svn/chrysalide/trunk@7 abbe820e-26c8-41b2-8c08-b7b2b41f8b0a
Diffstat (limited to 'src/arch/instruction-int.h')
| -rw-r--r-- | src/arch/instruction-int.h | 6 | 
1 files changed, 3 insertions, 3 deletions
diff --git a/src/arch/instruction-int.h b/src/arch/instruction-int.h index 11180dc..72c7914 100644 --- a/src/arch/instruction-int.h +++ b/src/arch/instruction-int.h @@ -43,10 +43,10 @@  /* Définition générique d'une instruction */  struct _asm_instr  { -    char opcode; +    uint8_t opcode; -    asm_operand operands[MAX_OPERANDS]; -    unsigned int operands_count;            /* Nbre. d'opérandes utilisées */ +    asm_operand **operands;                 /* Liste des opérandes         */ +    size_t operands_count;                  /* Nbre. d'opérandes utilisées */  };  | 
