diff options
author | Nick Clifton <nickc@redhat.com> | 2000-12-11 03:08:17 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2000-12-11 03:08:17 +0000 |
commit | 9a6b6a66b7d6a60b71e6028986f7df06fcabbbf5 (patch) | |
tree | 94e0abf2be053d5a030fc2ce332050fa6e862938 | |
parent | f66736412d0306b6044114cb75d71d0d5339ddd5 (diff) | |
download | binutils-9a6b6a66b7d6a60b71e6028986f7df06fcabbbf5.zip binutils-9a6b6a66b7d6a60b71e6028986f7df06fcabbbf5.tar.gz binutils-9a6b6a66b7d6a60b71e6028986f7df06fcabbbf5.tar.bz2 |
Add 0x91 as an FPE SWI.
-rw-r--r-- | sim/arm/ChangeLog | 4 | ||||
-rw-r--r-- | sim/arm/armos.c | 1 |
2 files changed, 5 insertions, 0 deletions
diff --git a/sim/arm/ChangeLog b/sim/arm/ChangeLog index 1c21cb0..31c583d 100644 --- a/sim/arm/ChangeLog +++ b/sim/arm/ChangeLog @@ -1,3 +1,7 @@ +2000-12-10 Nick Clifton <nickc@redhat.com> + + * armos.c (ARMul_OSHandleSWI): Add 0x91 as an FPE SWI. + 2000-12-07 Nick Clifton <nickc@redhat.com> * armemu.c (ARMul_Emulate26): Detect double word load and diff --git a/sim/arm/armos.c b/sim/arm/armos.c index 47ceb8b..dd0ce23 100644 --- a/sim/arm/armos.c +++ b/sim/arm/armos.c @@ -620,6 +620,7 @@ ARMul_OSHandleSWI (ARMul_State * state, ARMword number) } case 0x90: + case 0x91: case 0x92: /* These are used by the FPE code. */ return TRUE; |