Display hex equivalent of rotated ARM constants.
This commit is contained in:
parent
49a5575c32
commit
9f20bbfd4c
@ -1,3 +1,8 @@
|
|||||||
|
1999-07-05 Nick Clifton <nickc@cygnus.com>
|
||||||
|
|
||||||
|
* arm-dis.c (print_insn_arm): Display hex equivalent of rotated
|
||||||
|
constant.
|
||||||
|
|
||||||
1999-06-23 Alan Modra <alan@spri.levels.unisa.edu.au>
|
1999-06-23 Alan Modra <alan@spri.levels.unisa.edu.au>
|
||||||
|
|
||||||
* i386-dis.c: Mention intel mode specials in macro char comment.
|
* i386-dis.c: Mention intel mode specials in macro char comment.
|
||||||
|
@ -19,7 +19,6 @@ You should have received a copy of the GNU General Public License
|
|||||||
along with this program; if not, write to the Free Software
|
along with this program; if not, write to the Free Software
|
||||||
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
|
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
|
||||||
|
|
||||||
#include "sysdep.h"
|
|
||||||
#include "dis-asm.h"
|
#include "dis-asm.h"
|
||||||
#define DEFINE_TABLE
|
#define DEFINE_TABLE
|
||||||
#include "arm-opc.h"
|
#include "arm-opc.h"
|
||||||
@ -307,9 +306,9 @@ print_insn_arm (pc, info, given)
|
|||||||
{
|
{
|
||||||
int rotate = (given & 0xf00) >> 7;
|
int rotate = (given & 0xf00) >> 7;
|
||||||
int immed = (given & 0xff);
|
int immed = (given & 0xff);
|
||||||
func (stream, "#%d",
|
immed = (((immed << (32 - rotate))
|
||||||
((immed << (32 - rotate))
|
| (immed >> rotate)) & 0xffffffff);
|
||||||
| (immed >> rotate)) & 0xffffffff);
|
func (stream, "#%d\t; 0x%x", immed, immed);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
arm_decode_shift (given, func, stream);
|
arm_decode_shift (given, func, stream);
|
||||||
|
Loading…
Reference in New Issue
Block a user