mirror of
				https://git.tardis.systems/mirrors/yuzu
				synced 2025-11-03 20:24:43 +01:00 
			
		
		
		
	dyncom: Use VFP_FPSCR/VFP_FPEXC.
This commit is contained in:
		
							parent
							
								
									d532f6b496
								
							
						
					
					
						commit
						b7aef81cb4
					
				@ -111,8 +111,8 @@ void ARM_DynCom::SaveContext(Core::ThreadContext& ctx) {
 | 
				
			|||||||
    ctx.pc = state->Reg[15];
 | 
					    ctx.pc = state->Reg[15];
 | 
				
			||||||
    ctx.cpsr = state->Cpsr;
 | 
					    ctx.cpsr = state->Cpsr;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    ctx.fpscr = state->VFP[1];
 | 
					    ctx.fpscr = state->VFP[VFP_FPSCR];
 | 
				
			||||||
    ctx.fpexc = state->VFP[2];
 | 
					    ctx.fpexc = state->VFP[VFP_FPEXC];
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
void ARM_DynCom::LoadContext(const Core::ThreadContext& ctx) {
 | 
					void ARM_DynCom::LoadContext(const Core::ThreadContext& ctx) {
 | 
				
			||||||
@ -124,8 +124,8 @@ void ARM_DynCom::LoadContext(const Core::ThreadContext& ctx) {
 | 
				
			|||||||
    state->Reg[15] = ctx.pc;
 | 
					    state->Reg[15] = ctx.pc;
 | 
				
			||||||
    state->Cpsr = ctx.cpsr;
 | 
					    state->Cpsr = ctx.cpsr;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    state->VFP[1] = ctx.fpscr;
 | 
					    state->VFP[VFP_FPSCR] = ctx.fpscr;
 | 
				
			||||||
    state->VFP[2] = ctx.fpexc;
 | 
					    state->VFP[VFP_FPEXC] = ctx.fpexc;
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
void ARM_DynCom::PrepareReschedule() {
 | 
					void ARM_DynCom::PrepareReschedule() {
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
		Reference in New Issue
	
	Block a user