mirror of
				https://git.zaroz.cloud/nintendo-back-up/yuzu/yuzu-mainline.git
				synced 2025-03-21 01:53:15 +00:00 
			
		
		
		
	Merge pull request #1645 from mailwl/thumb_pc
Fix thumb ADR instruction alignment
This commit is contained in:
		
						commit
						0408f1191a
					
				@ -3955,9 +3955,7 @@ 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)) {
 | 
				
			||||||
            add_inst* const inst_cream = (add_inst*)inst_base->component;
 | 
					            add_inst* const inst_cream = (add_inst*)inst_base->component;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
            u32 rn_val = RN;
 | 
					            u32 rn_val = CHECK_READ_REG15_WA(cpu, inst_cream->Rn);
 | 
				
			||||||
            if (inst_cream->Rn == 15)
 | 
					 | 
				
			||||||
                rn_val += 2 * cpu->GetInstructionSize();
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
            bool carry;
 | 
					            bool carry;
 | 
				
			||||||
            bool overflow;
 | 
					            bool overflow;
 | 
				
			||||||
@ -6167,9 +6165,7 @@ 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)) {
 | 
				
			||||||
            sub_inst* const inst_cream = (sub_inst*)inst_base->component;
 | 
					            sub_inst* const inst_cream = (sub_inst*)inst_base->component;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
            u32 rn_val = RN;
 | 
					            u32 rn_val = CHECK_READ_REG15_WA(cpu, inst_cream->Rn);
 | 
				
			||||||
            if (inst_cream->Rn == 15)
 | 
					 | 
				
			||||||
                rn_val += 2 * cpu->GetInstructionSize();
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
            bool carry;
 | 
					            bool carry;
 | 
				
			||||||
            bool overflow;
 | 
					            bool overflow;
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
		Reference in New Issue
	
	Block a user