mirror of
				https://github.com/PabloMK7/citra.git
				synced 2025-10-30 21:30:04 +00:00 
			
		
		
		
	Dyncom: Correct implementation of STM for R15
This commit is contained in:
		
							parent
							
								
									3c3a6cb2af
								
							
						
					
					
						commit
						50407a8dc8
					
				
					 1 changed files with 4 additions and 3 deletions
				
			
		|  | @ -3228,7 +3228,7 @@ unsigned InterpreterMainLoop(ARMul_State* cpu) { | |||
|                     addr += 4; | ||||
|                 } | ||||
|                 if (BIT(inst_cream->inst, 15)) { | ||||
|                     cpu->WriteMemory32(addr, cpu->Reg_usr[1] + 8); | ||||
|                     cpu->WriteMemory32(addr, cpu->Reg[15] + 8); | ||||
|                 } | ||||
|             } else { | ||||
|                 for (int i = 0; i < 15; i++) { | ||||
|  | @ -3243,8 +3243,9 @@ unsigned InterpreterMainLoop(ARMul_State* cpu) { | |||
|                 } | ||||
| 
 | ||||
|                 // Check PC reg
 | ||||
|                 if (BIT(inst_cream->inst, 15)) | ||||
|                     cpu->WriteMemory32(addr, cpu->Reg_usr[1] + 8); | ||||
|                 if (BIT(inst_cream->inst, 15)) { | ||||
|                     cpu->WriteMemory32(addr, cpu->Reg[15] + 8); | ||||
|                 } | ||||
|             } | ||||
|         } | ||||
|         cpu->Reg[15] += cpu->GetInstructionSize(); | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue