summaryrefslogtreecommitdiff
path: root/src/plugins
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2009-05-17 22:59:55 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2009-05-17 22:59:55 (GMT)
commit4d0ff0c23862c242d533d9b2d34e8812ef99ad61 (patch)
tree3b8504b8d3946a8bc9a702b819138ab1e5501be6 /src/plugins
parent96cb6971ee3ca529958b8cb1e8e55a6eb4e60eae (diff)
Used only the new format of processor/instructions/operands for x86.
git-svn-id: svn://svn.gna.org/svn/chrysalide/trunk@64 abbe820e-26c8-41b2-8c08-b7b2b41f8b0a
Diffstat (limited to 'src/plugins')
-rw-r--r--src/plugins/overjump/overjump.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/plugins/overjump/overjump.c b/src/plugins/overjump/overjump.c
index e654040..2e5bcba 100644
--- a/src/plugins/overjump/overjump.c
+++ b/src/plugins/overjump/overjump.c
@@ -40,7 +40,7 @@ typedef struct _overjump_instance
uint8_t *bin_data; /* Données binaires brutes */
exe_format *format; /* Format du binaire */
- asm_processor *proc; /* Architecture du binaire */
+ void/*asm_processor*/ *proc; /* Architecture du binaire */
disass_options *options; /* Options de désassemblage */
bin_part **parts; /* Parts binaires à ausculter */
@@ -78,7 +78,7 @@ overjump_instance *create_overjump_instance(openida_binary *binary)
result->bin_data = get_openida_binary_data(binary, &result->bin_length);
result->format = get_openida_binary_format(binary);
- result->proc = get_openida_binary_processor(binary);
+ //result->proc = get_openida_binary_processor(binary);
result->options = get_openida_binary_options(binary);
result->parts = get_elf_default_code_parts(result->format, &result->parts_count);
@@ -174,7 +174,7 @@ GRenderingLine *disassemble_address(overjump_instance *instance, vmpa_t addr, bo
offset = addr;
-
+ /*
instr = decode_instruction(instance->proc, &instance->bin_data[start],
&npos, size, start, offset);
@@ -182,7 +182,7 @@ GRenderingLine *disassemble_address(overjump_instance *instance, vmpa_t addr, bo
line = g_code_line_new(offset, instr, instance->options);
g_rendering_line_add_to_lines(&result, line);
-
+ */
return result;