diff options
author | Cyrille Bagard <nocbos@gmail.com> | 2009-05-11 23:42:48 (GMT) |
---|---|---|
committer | Cyrille Bagard <nocbos@gmail.com> | 2009-05-11 23:42:48 (GMT) |
commit | 96cb6971ee3ca529958b8cb1e8e55a6eb4e60eae (patch) | |
tree | 68e49f325de3e93ef186d3e078da8ddc473aedf7 /src/arch/x86 | |
parent | 80dc0ac97987ad9246bee7c47458a015339453bf (diff) |
Reorganized the way the program is built again and added partial support for the JVM.
git-svn-id: svn://svn.gna.org/svn/chrysalide/trunk@63 abbe820e-26c8-41b2-8c08-b7b2b41f8b0a
Diffstat (limited to 'src/arch/x86')
-rw-r--r-- | src/arch/x86/Makefile.am | 2 | ||||
-rw-r--r-- | src/arch/x86/processor.c | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/arch/x86/Makefile.am b/src/arch/x86/Makefile.am index 95298b9..8f49e54 100644 --- a/src/arch/x86/Makefile.am +++ b/src/arch/x86/Makefile.am @@ -1,5 +1,5 @@ -lib_LTLIBRARIES = libarchx86.la +noinst_LTLIBRARIES = libarchx86.la libarchx86_la_SOURCES = \ instruction.h \ diff --git a/src/arch/x86/processor.c b/src/arch/x86/processor.c index 9187926..dfb2f12 100644 --- a/src/arch/x86/processor.c +++ b/src/arch/x86/processor.c @@ -168,8 +168,8 @@ asm_processor *create_x86_processor(void) x86_register_instructions(result); - ASM_PROCESSOR(result)->fetch_instr = (fetch_instruction)x86_fetch_instruction; - ASM_PROCESSOR(result)->print_instr = (print_instruction)x86_print_instruction; + ASM_PROCESSOR(result)->fetch_instr = (fetch_instruction_)x86_fetch_instruction; + ASM_PROCESSOR(result)->print_instr = (print_instruction_)x86_print_instruction; return ASM_PROCESSOR(result); |