mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-02 23:33:54 -06:00
ARM thumb disassembly (Paul Brook)
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@1416 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
parent
192c7bd927
commit
c2d551ff5a
2 changed files with 23 additions and 3 deletions
|
@ -1556,6 +1556,11 @@ print_insn_arm (pc, info)
|
|||
}
|
||||
|
||||
is_thumb = force_thumb;
|
||||
if (pc & 1)
|
||||
{
|
||||
is_thumb = 1;
|
||||
pc &= ~(bfd_vma) 1;
|
||||
}
|
||||
|
||||
#if 0
|
||||
if (!is_thumb && info->symbols != NULL)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue