mirror of
				https://git.zaroz.cloud/nintendo-back-up/yuzu/yuzu.git
				synced 2025-05-12 00:45:25 +00:00 
			
		
		
		
	Merge pull request #950 from lioncash/bx
dyncom: Properly retrieve the PC value in BX if used.
This commit is contained in:
		
						commit
						25652e5cd5
					
				@ -4144,11 +4144,13 @@ unsigned InterpreterMainLoop(ARMul_State* cpu) {
 | 
				
			|||||||
        if (inst_base->cond == 0xE || CondPassed(cpu, inst_base->cond)) {
 | 
					        if (inst_base->cond == 0xE || CondPassed(cpu, inst_base->cond)) {
 | 
				
			||||||
            bx_inst* const inst_cream = (bx_inst*)inst_base->component;
 | 
					            bx_inst* const inst_cream = (bx_inst*)inst_base->component;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
            if (inst_cream->Rm == 15)
 | 
					            u32 address = RM;
 | 
				
			||||||
                LOG_WARNING(Core_ARM11, "BX at pc %x: use of Rm = R15 is discouraged", cpu->Reg[15]);
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
            cpu->TFlag = cpu->Reg[inst_cream->Rm] & 0x1;
 | 
					            if (inst_cream->Rm == 15)
 | 
				
			||||||
            cpu->Reg[15] = cpu->Reg[inst_cream->Rm] & 0xfffffffe;
 | 
					                address += 2 * GET_INST_SIZE(cpu);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					            cpu->TFlag   = address & 1;
 | 
				
			||||||
 | 
					            cpu->Reg[15] = address & 0xfffffffe;
 | 
				
			||||||
            INC_PC(sizeof(bx_inst));
 | 
					            INC_PC(sizeof(bx_inst));
 | 
				
			||||||
            goto DISPATCH;
 | 
					            goto DISPATCH;
 | 
				
			||||||
        }
 | 
					        }
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
		Reference in New Issue
	
	Block a user