mirror of
				https://github.com/PabloMK7/citra.git
				synced 2025-10-31 05:40:04 +00:00 
			
		
		
		
	Fix thumb ADR instruction alignment
This commit is contained in:
		
							parent
							
								
									dccadce074
								
							
						
					
					
						commit
						06a4369f75
					
				
					 1 changed files with 2 additions and 6 deletions
				
			
		|  | @ -3955,9 +3955,7 @@ unsigned InterpreterMainLoop(ARMul_State* cpu) { | |||
|         if (inst_base->cond == ConditionCode::AL || CondPassed(cpu, inst_base->cond)) { | ||||
|             add_inst* const inst_cream = (add_inst*)inst_base->component; | ||||
| 
 | ||||
|             u32 rn_val = RN; | ||||
|             if (inst_cream->Rn == 15) | ||||
|                 rn_val += 2 * cpu->GetInstructionSize(); | ||||
|             u32 rn_val = CHECK_READ_REG15_WA(cpu, inst_cream->Rn); | ||||
| 
 | ||||
|             bool carry; | ||||
|             bool overflow; | ||||
|  | @ -6167,9 +6165,7 @@ unsigned InterpreterMainLoop(ARMul_State* cpu) { | |||
|         if (inst_base->cond == ConditionCode::AL || CondPassed(cpu, inst_base->cond)) { | ||||
|             sub_inst* const inst_cream = (sub_inst*)inst_base->component; | ||||
| 
 | ||||
|             u32 rn_val = RN; | ||||
|             if (inst_cream->Rn == 15) | ||||
|                 rn_val += 2 * cpu->GetInstructionSize(); | ||||
|             u32 rn_val = CHECK_READ_REG15_WA(cpu, inst_cream->Rn); | ||||
| 
 | ||||
|             bool carry; | ||||
|             bool overflow; | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue