At least for TI TM4C1294. LR==-1 XPSR==0 PRIMASK, FAULTMASK, and BASEPRI all cleared so exception handlers are unmasked. STKALIGN set. --- target-arm/cpu.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/target-arm/cpu.c b/target-arm/cpu.c index 1fa1f96..8b85888 100644 --- a/target-arm/cpu.c +++ b/target-arm/cpu.c @@ -175,7 +175,10 @@ static void arm_cpu_reset(CPUState *s) env->v7m.exception_prio = env->v7m.pending_prio = 0x100; - env->daif &= ~PSTATE_I; + env->v7m.ccr = 1<<9; /* STKALIGN */ + + env->daif &= ~(PSTATE_I|PSTATE_F); + env->ZF = 1; rom = rom_ptr(0); if (rom) { /* Address zero is covered by ROM which hasn't yet been @@ -194,6 +197,7 @@ static void arm_cpu_reset(CPUState *s) } env->regs[13] = initial_msp & 0xFFFFFFFC; + env->regs[14] = 0xffffffff; env->regs[15] = initial_pc & ~1; env->thumb = initial_pc & 1; } -- 2.1.4