mirror of
				https://github.com/PabloMK7/citra.git
				synced 2025-10-31 05:40:04 +00:00 
			
		
		
		
	Merge pull request #1653 from mailwl/blx-lr
Fix BLX LR opcode interpretation
This commit is contained in:
		
						commit
						0b7efc2be2
					
				
					 1 changed files with 3 additions and 2 deletions
				
			
		|  | @ -4080,11 +4080,12 @@ unsigned InterpreterMainLoop(ARMul_State* cpu) { | ||||||
|         if ((inst_base->cond == ConditionCode::AL) || CondPassed(cpu, inst_base->cond)) { |         if ((inst_base->cond == ConditionCode::AL) || CondPassed(cpu, inst_base->cond)) { | ||||||
|             unsigned int inst = inst_cream->inst; |             unsigned int inst = inst_cream->inst; | ||||||
|             if (BITS(inst, 20, 27) == 0x12 && BITS(inst, 4, 7) == 0x3) { |             if (BITS(inst, 20, 27) == 0x12 && BITS(inst, 4, 7) == 0x3) { | ||||||
|  |                 const u32 jump_address = cpu->Reg[inst_cream->val.Rm]; | ||||||
|                 cpu->Reg[14] = (cpu->Reg[15] + cpu->GetInstructionSize()); |                 cpu->Reg[14] = (cpu->Reg[15] + cpu->GetInstructionSize()); | ||||||
|                 if(cpu->TFlag) |                 if(cpu->TFlag) | ||||||
|                     cpu->Reg[14] |= 0x1; |                     cpu->Reg[14] |= 0x1; | ||||||
|                 cpu->Reg[15] = cpu->Reg[inst_cream->val.Rm] & 0xfffffffe; |                 cpu->Reg[15] = jump_address & 0xfffffffe; | ||||||
|                 cpu->TFlag = cpu->Reg[inst_cream->val.Rm] & 0x1; |                 cpu->TFlag = jump_address & 0x1; | ||||||
|             } else { |             } else { | ||||||
|                 cpu->Reg[14] = (cpu->Reg[15] + cpu->GetInstructionSize()); |                 cpu->Reg[14] = (cpu->Reg[15] + cpu->GetInstructionSize()); | ||||||
|                 cpu->TFlag = 0x1; |                 cpu->TFlag = 0x1; | ||||||
|  |  | ||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue