Merge pull request #1651 from mailwl/thread-init-thumb
Update cpsr (T)humb bit while creating thread
This commit is contained in:
		| @@ -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) { | ||||
|   | ||||
		Reference in New Issue
	
	Block a user