Skip to content
Snippets Groups Projects
Commit f3ba678b authored by Mathew Maidment's avatar Mathew Maidment
Browse files

Merge pull request #1651 from mailwl/thread-init-thumb

Update cpsr (T)humb bit while creating thread
parents 6e750ae1 4630209c
No related branches found
No related tags found
No related merge requests found
......@@ -93,7 +93,7 @@ void ARM_DynCom::ResetContext(Core::ThreadContext& context, u32 stack_top, u32 e
context.cpu_registers[0] = arg;
context.pc = entry_point;
context.sp = stack_top;
context.cpsr = 0x1F; // Usermode
context.cpsr = 0x1F | ((entry_point & 1) << 5); // Usermode and THUMB mode
}
void ARM_DynCom::SaveContext(Core::ThreadContext& ctx) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment