diff options
author | Cyrille Bagard <nocbos@gmail.com> | 2012-12-08 16:46:49 (GMT) |
---|---|---|
committer | Cyrille Bagard <nocbos@gmail.com> | 2012-12-08 16:46:49 (GMT) |
commit | 4dd8356e19b9e58990b2f3e0c4110aa2fe9642d1 (patch) | |
tree | 26ede3d87b05f0baeb915066cb01eee60a83f2e3 /src/plugins | |
parent | 2a7e284702a9cf3cfd060fe50e7ef96621633aa4 (diff) |
Cut instructions flow into blocks (to be continued).
git-svn-id: svn://svn.gna.org/svn/chrysalide/trunk@297 abbe820e-26c8-41b2-8c08-b7b2b41f8b0a
Diffstat (limited to 'src/plugins')
-rw-r--r-- | src/plugins/plugin-def.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/plugins/plugin-def.h b/src/plugins/plugin-def.h index 602b296..9dbe53c 100644 --- a/src/plugins/plugin-def.h +++ b/src/plugins/plugin-def.h @@ -52,7 +52,8 @@ typedef enum _PluginAction PGA_BINARY_DISASSEMBLED = (1 << 2), /* Désassemblage fini */ PGA_BINARY_LINKED = (1 << 3), /* Liaison en place */ PGA_BINARY_BOUNDED = (1 << 4), /* Limites de routines définies*/ - PGA_BINARY_PRINTED = (1 << 5), /* Instructions imprimées */ + PGA_BINARY_GROUPED = (1 << 5), /* Instructions regroupées */ + PGA_BINARY_PRINTED = (1 << 6), /* Instructions imprimées */ PGA_DISASS_PROCESS = (1 << 6), /* Traitement niveau assembleur*/ PGA_CODE_PROCESS = (1 << 7), /* Traitement du code existant */ |