mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-12-11 16:00:50 -07:00
target-lm32: add simple disassembler
Because binutils disassembler is based on libopcode, this is a rewrite from scratch. Signed-off-by: Michael Walle <michael@walle.cc>
This commit is contained in:
parent
060544d30f
commit
79368f4984
5 changed files with 375 additions and 0 deletions
6
disas.c
6
disas.c
|
|
@ -220,6 +220,9 @@ void target_disas(FILE *out, target_ulong code, target_ulong size, int flags)
|
|||
#elif defined(TARGET_MICROBLAZE)
|
||||
disasm_info.mach = bfd_arch_microblaze;
|
||||
print_insn = print_insn_microblaze;
|
||||
#elif defined(TARGET_LM32)
|
||||
disasm_info.mach = bfd_mach_lm32;
|
||||
print_insn = print_insn_lm32;
|
||||
#else
|
||||
fprintf(out, "0x" TARGET_FMT_lx
|
||||
": Asm output not supported on this arch\n", code);
|
||||
|
|
@ -421,6 +424,9 @@ void monitor_disas(Monitor *mon, CPUArchState *env,
|
|||
#elif defined(TARGET_S390X)
|
||||
disasm_info.mach = bfd_mach_s390_64;
|
||||
print_insn = print_insn_s390;
|
||||
#elif defined(TARGET_LM32)
|
||||
disasm_info.mach = bfd_mach_lm32;
|
||||
print_insn = print_insn_lm32;
|
||||
#else
|
||||
monitor_printf(mon, "0x" TARGET_FMT_lx
|
||||
": Asm output not supported on this arch\n", pc);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue