diff options
author | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2005-11-06 16:52:11 +0000 |
---|---|---|
committer | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2005-11-06 16:52:11 +0000 |
commit | 48024e4a485fa82c103978c30c7d59d3a3a09262 (patch) | |
tree | b1f14b3d065a54c80e53bbc0f60c2b2fbcd8680a /disas.c | |
parent | b389dbfb587e61ccc1c68e51f84f8fe050e7203e (diff) |
m68k disassembler (Paul Brook)
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@1605 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'disas.c')
-rw-r--r-- | disas.c | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -187,6 +187,8 @@ void target_disas(FILE *out, target_ulong code, target_ulong size, int flags) print_insn = print_insn_ppc; #elif defined(TARGET_MIPS) print_insn = print_insn_big_mips; +#elif defined(TARGET_M68K) + print_insn = print_insn_m68k; #else fprintf(out, "0x" TARGET_FMT_lx ": Asm output not supported on this arch\n", code); @@ -251,6 +253,8 @@ void disas(FILE *out, void *code, unsigned long size) print_insn = print_insn_big_mips; #elif defined(__MIPSEL__) print_insn = print_insn_little_mips; +#elif defined(__m68k__) + print_insn = print_insn_m68k; #else fprintf(out, "0x%lx: Asm output not supported on this arch\n", (long) code); @@ -374,6 +378,8 @@ void monitor_disas(target_ulong pc, int nb_insn, int is_physical, int flags) print_insn = print_insn_ppc; #elif defined(TARGET_MIPS) print_insn = print_insn_big_mips; +#elif defined(TARGET_M68K) + print_insn = print_insn_m68k; #else term_printf("0x" TARGET_FMT_lx ": Asm output not supported on this arch\n", pc); |