/[qemu]/qemu/disas.c
ViewVC logotype

Diff of /qemu/disas.c

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.26 by bellard, Sun Oct 30 18:21:23 2005 UTC revision 1.27 by bellard, Sun Nov 6 16:52:11 2005 UTC
# Line 187  void target_disas(FILE *out, target_ulon Line 187  void target_disas(FILE *out, target_ulon
187      print_insn = print_insn_ppc;      print_insn = print_insn_ppc;
188  #elif defined(TARGET_MIPS)  #elif defined(TARGET_MIPS)
189      print_insn = print_insn_big_mips;      print_insn = print_insn_big_mips;
190    #elif defined(TARGET_M68K)
191        print_insn = print_insn_m68k;
192  #else  #else
193      fprintf(out, "0x" TARGET_FMT_lx      fprintf(out, "0x" TARGET_FMT_lx
194              ": Asm output not supported on this arch\n", code);              ": Asm output not supported on this arch\n", code);
# Line 251  void disas(FILE *out, void *code, unsign Line 253  void disas(FILE *out, void *code, unsign
253      print_insn = print_insn_big_mips;      print_insn = print_insn_big_mips;
254  #elif defined(__MIPSEL__)  #elif defined(__MIPSEL__)
255      print_insn = print_insn_little_mips;      print_insn = print_insn_little_mips;
256    #elif defined(__m68k__)
257        print_insn = print_insn_m68k;
258  #else  #else
259      fprintf(out, "0x%lx: Asm output not supported on this arch\n",      fprintf(out, "0x%lx: Asm output not supported on this arch\n",
260              (long) code);              (long) code);
# Line 374  void monitor_disas(target_ulong pc, int Line 378  void monitor_disas(target_ulong pc, int
378      print_insn = print_insn_ppc;      print_insn = print_insn_ppc;
379  #elif defined(TARGET_MIPS)  #elif defined(TARGET_MIPS)
380      print_insn = print_insn_big_mips;      print_insn = print_insn_big_mips;
381    #elif defined(TARGET_M68K)
382        print_insn = print_insn_m68k;
383  #else  #else
384      term_printf("0x" TARGET_FMT_lx      term_printf("0x" TARGET_FMT_lx
385                  ": Asm output not supported on this arch\n", pc);                  ": Asm output not supported on this arch\n", pc);

Legend:
Removed from v.1.26  
changed lines
  Added in v.1.27

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26