diff options
author | Cyrille Bagard <nocbos@gmail.com> | 2013-02-10 09:56:11 (GMT) |
---|---|---|
committer | Cyrille Bagard <nocbos@gmail.com> | 2013-02-10 09:56:11 (GMT) |
commit | 34e1a14aced520ba06ee1b81cfd7710e97c1643f (patch) | |
tree | 2657c22041ab954bb2165553f71141b7843956a2 /src/arch | |
parent | 3467b0cdb09976faccc6dbef09315cc38dbe6fb5 (diff) |
Improved the disassembling process by handling loops in code.
git-svn-id: svn://svn.gna.org/svn/chrysalide/trunk@339 abbe820e-26c8-41b2-8c08-b7b2b41f8b0a
Diffstat (limited to 'src/arch')
-rw-r--r-- | src/arch/instruction.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/arch/instruction.h b/src/arch/instruction.h index ae53dbb..59577dc 100644 --- a/src/arch/instruction.h +++ b/src/arch/instruction.h @@ -91,6 +91,7 @@ typedef enum _InstructionLinkType ILT_CASE_JUMP, /* Saut suite à aiguillage */ ILT_JUMP_IF_TRUE, /* Saut conditionnel (si vrai) */ ILT_JUMP_IF_FALSE, /* Saut conditionnel (si faux) */ + ILT_LOOP, /* Retour en arrière (boucle) */ ILT_CALL, /* Appel d'une fonction */ ILT_CATCH_EXCEPTION /* Gestion d'une exception */ |