diff options
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); |