diff options
Diffstat (limited to 'sim')
-rw-r--r-- | sim/arm/ChangeLog | 4 | ||||
-rw-r--r-- | sim/arm/armemu.h | 3 |
2 files changed, 6 insertions, 1 deletions
diff --git a/sim/arm/ChangeLog b/sim/arm/ChangeLog index 0bd88b5..ac6e453 100644 --- a/sim/arm/ChangeLog +++ b/sim/arm/ChangeLog @@ -1,3 +1,7 @@ +2001-02-12 Nick Clifton <nickc@redhat.com> + + * armemu.h (NEGBRANCH): Fix defintion. + 2001-02-01 Nick Clifton <nickc@redhat.com> * armemu.c (LoadSMult): Update base address register after diff --git a/sim/arm/armemu.h b/sim/arm/armemu.h index 8fd5f35..4d4406d 100644 --- a/sim/arm/armemu.h +++ b/sim/arm/armemu.h @@ -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 * |