From c1a72ffdd6aecb2880a7ea3a00234fd48142074c Mon Sep 17 00:00:00 2001 From: Nick Clifton Date: Tue, 30 May 2000 17:13:37 +0000 Subject: Add support for v4 SystemMode. --- sim/arm/armemu.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'sim/arm/armemu.c') diff --git a/sim/arm/armemu.c b/sim/arm/armemu.c index d890cda..acbcb75 100644 --- a/sim/arm/armemu.c +++ b/sim/arm/armemu.c @@ -2864,6 +2864,9 @@ ARMul_Emulate26 (register ARMul_State * state) if (state->Emulate == ONCE) state->Emulate = STOP; + /* If we have changed mode, allow the PC to advance before stopping. */ + else if (state->Emulate == CHANGEMODE) + continue; else if (state->Emulate != RUN) break; } @@ -2872,7 +2875,8 @@ ARMul_Emulate26 (register ARMul_State * state) state->decoded = decoded; state->loaded = loaded; state->pc = pc; - return (pc); + + return pc; } /* Emulate 26/32 in instruction based mode */ -- cgit v1.1