MCPcopy Create free account
hub / github.com/FEX-Emu/FEX / GetFPCR

Function GetFPCR

Source/Common/HostFeatures.cpp:364–368  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

362}
363
364static uint32_t GetFPCR() {
365 uint64_t Result {};
366 __asm("mrs %[Res], FPCR" : [Res] "=r"(Result));
367 return Result;
368}
369
370static void SetFPCR(uint64_t Value) {
371 __asm("msr FPCR, %[Value]" ::[Value] "r"(Value));

Callers 1

FetchHostFeaturesFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected