diff options
author | aurel32 <aurel32> | 2008-04-12 20:14:54 +0000 |
---|---|---|
committer | aurel32 <aurel32@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-04-12 20:14:54 +0000 |
commit | a5d7d5283cdf69db7e85646964ecbaba5edfdf58 (patch) | |
tree | dc21f1c34e64052eb0d5fb1e53abd980fc858c1c /qemu/disas.c | |
parent | b43aa7d310b4ab56d33b1b2a0ee095d51cf438e0 (diff) |
HPPA (PA-RISC) host support
(Stuart Brady)
Diffstat (limited to 'qemu/disas.c')
-rw-r--r-- | qemu/disas.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/qemu/disas.c b/qemu/disas.c index ecc15344..b1192474 100644 --- a/qemu/disas.c +++ b/qemu/disas.c @@ -279,6 +279,8 @@ void disas(FILE *out, void *code, unsigned long size) print_insn = print_insn_m68k; #elif defined(__s390__) print_insn = print_insn_s390; +#elif defined(__hppa__) + print_insn = print_insn_hppa; #else fprintf(out, "0x%lx: Asm output not supported on this arch\n", (long) code); |