commit | e90e390c2b8368d534cccfd2aaca1f6a0ae5d53d | [log] [tgz] |
---|---|---|
author | Edgar E. Iglesias <[email protected]> | Wed May 20 20:07:38 2009 +0200 |
committer | Edgar E. Iglesias <[email protected]> | Tue May 26 21:10:28 2009 +0200 |
tree | 0121e15c59c1f5e37b922002f1d85a5b1d9e0357 | |
parent | b779e29ed8919b18644b41bf581bdbcffdcb962e [diff] [blame] |
microblaze: Add disassembler. Signed-off-by: Edgar E. Iglesias <[email protected]>
diff --git a/disas.c b/disas.c index 6ed31e3..af5a9ea 100644 --- a/disas.c +++ b/disas.c
@@ -195,6 +195,9 @@ #elif defined(TARGET_CRIS) disasm_info.mach = bfd_mach_cris_v32; print_insn = print_insn_crisv32; +#elif defined(TARGET_MICROBLAZE) + disasm_info.mach = bfd_arch_microblaze; + print_insn = print_insn_microblaze; #else fprintf(out, "0x" TARGET_FMT_lx ": Asm output not supported on this arch\n", code);