mirror of
				https://git.zaroz.cloud/nintendo-back-up/yuzu/yuzu.git
				synced 2025-05-12 00:45:25 +00:00 
			
		
		
		
	arm_dynarmic: Implement GetVFPSystemReg/SetVFPSystemReg.
This commit is contained in:
		
							parent
							
								
									57ce84d471
								
							
						
					
					
						commit
						1b95f61d82
					
				| @ -87,14 +87,21 @@ void ARM_Dynarmic::SetVFPReg(int index, u32 value) { | ||||
| } | ||||
| 
 | ||||
| u32 ARM_Dynarmic::GetVFPSystemReg(VFPSystemRegister reg) const { | ||||
|     // TODO(bunnei): ImplementMe
 | ||||
|     UNIMPLEMENTED(); | ||||
|     return 0; | ||||
|     if (reg == VFP_FPSCR) { | ||||
|         return jit->Fpscr(); | ||||
|     } | ||||
| 
 | ||||
|     // Dynarmic does not implement and/or expose other VFP registers, fallback to interpreter state
 | ||||
|     return interpreter_state->VFP[reg]; | ||||
| } | ||||
| 
 | ||||
| void ARM_Dynarmic::SetVFPSystemReg(VFPSystemRegister reg, u32 value) { | ||||
|     // TODO(bunnei): ImplementMe
 | ||||
|     UNIMPLEMENTED(); | ||||
|     if (reg == VFP_FPSCR) { | ||||
|         jit->SetFpscr(value); | ||||
|     } | ||||
| 
 | ||||
|     // Dynarmic does not implement and/or expose other VFP registers, fallback to interpreter state
 | ||||
|     interpreter_state->VFP[reg] = value; | ||||
| } | ||||
| 
 | ||||
| u32 ARM_Dynarmic::GetCPSR() const { | ||||
|  | ||||
		Loading…
	
		Reference in New Issue
	
	Block a user
	 bunnei
						bunnei