aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick Clifton <nickc@redhat.com>1998-06-02 22:23:52 +0000
committerNick Clifton <nickc@redhat.com>1998-06-02 22:23:52 +0000
commite3ace30a618618b40870e52e27b728044001619b (patch)
treea534b19a1a17d3e5d57f03b9713ca05c7dff63c5 /sim/arm/armos.c
parent * elflink.h (elf_merge_symbol): Don't always set type_change_ok (diff)
downloadbinutils-gdb-e3ace30a618618b40870e52e27b728044001619b.tar.gz
binutils-gdb-e3ace30a618618b40870e52e27b728044001619b.tar.bz2
binutils-gdb-e3ace30a618618b40870e52e27b728044001619b.zip
Allow simulator to work with Angel SWIs.
Diffstat (limited to 'sim/arm/armos.c')
-rw-r--r--sim/arm/armos.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/sim/arm/armos.c b/sim/arm/armos.c
index 4eb672de16d..71ca8ff45e1 100644
--- a/sim/arm/armos.c
+++ b/sim/arm/armos.c
@@ -296,6 +296,8 @@ unsigned ARMul_OSHandleSWI(ARMul_State *state,ARMword number)
{
char dummy[2000];
int i;
+ int flags;
+
for (i = 0;
dummy[i] = ARMul_ReadByte(state, state->Reg[0] + i);
i++)
@@ -417,6 +419,11 @@ unsigned ARMul_OSHandleSWI(ARMul_State *state,ARMword number)
} while (temp != 0) ;
return(TRUE) ;
+ case AngelSWI_ARM:
+ case AngelSWI_Thumb:
+ /* Ignore these SWIs (for now). */
+ return TRUE;
+
default :
state->Emulate = FALSE ;
return(FALSE) ;