forked from Imagelibrary/binutils-gdb
Fix definition of NEGBRANCH
This commit is contained in:
@@ -390,7 +390,8 @@ extern ARMword isize;
|
||||
#define STORESMULT(instr,address,wb) StoreSMult(state,instr,address,wb)
|
||||
|
||||
#define POSBRANCH ((instr & 0x7fffff) << 2)
|
||||
#define NEGBRANCH (0xfc000000 | ((instr & 0xffffff) << 2))
|
||||
#define NEGBRANCH ((0xff000000 |(instr & 0xffffff)) << 2)
|
||||
|
||||
|
||||
/***************************************************************************\
|
||||
* Values for Emulate *
|
||||
|
||||
Reference in New Issue
Block a user