diff options
| author | ths | 2007-10-08 14:46:58 +0200 |
|---|---|---|
| committer | ths | 2007-10-08 14:46:58 +0200 |
| commit | a25fd137c39406c9871640521492960e28388372 (patch) | |
| tree | a55a0c8a261bb78af9091b9445bd83c07f1f92e9 /disas.c | |
| parent | CRIS disassembler, originally from binutils, by Edgar E. Iglesias. (diff) | |
| download | qemu-a25fd137c39406c9871640521492960e28388372.tar.gz qemu-a25fd137c39406c9871640521492960e28388372.tar.xz qemu-a25fd137c39406c9871640521492960e28388372.zip | |
Wire up CRIS disassembler, by Edgar E. Iglesias.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3357 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'disas.c')
| -rw-r--r-- | disas.c | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -205,6 +205,9 @@ void target_disas(FILE *out, target_ulong code, target_ulong size, int flags) #elif defined(TARGET_ALPHA) disasm_info.mach = bfd_mach_alpha; print_insn = print_insn_alpha; +#elif defined(TARGET_CRIS) + disasm_info.mach = bfd_mach_cris_v32; + print_insn = print_insn_crisv32; #else fprintf(out, "0x" TARGET_FMT_lx ": Asm output not supported on this arch\n", code); |
