diff options
author | ths <ths@c046a42c-6fe2-441c-8c8c-71466251a162> | 2007-07-31 23:44:21 +0000 |
---|---|---|
committer | ths <ths@c046a42c-6fe2-441c-8c8c-71466251a162> | 2007-07-31 23:44:21 +0000 |
commit | 8f860bb83cb872461ebac017232604b1dc2d2604 (patch) | |
tree | 68d783b6972b14e581878cd5e6db2b4be0a0a88f /disas.c | |
parent | 24bc1cbc7b1c774ba09b3517fba4a37293498a00 (diff) |
s390 disassembler support, by Ulrich Hecht.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3104 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'disas.c')
-rw-r--r-- | disas.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -269,6 +269,8 @@ void disas(FILE *out, void *code, unsigned long size) print_insn = print_insn_little_mips; #elif defined(__m68k__) print_insn = print_insn_m68k; +#elif defined(__s390__) + print_insn = print_insn_s390; #else fprintf(out, "0x%lx: Asm output not supported on this arch\n", (long) code); |