MCPcopy Create free account
hub / github.com/BlitterStudio/amiberry / from_exten

Function from_exten

src/fpp_softfloat.cpp:219–225  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

217 fpd->fpx.low = ((uae_u64)wrd2 << 32) | wrd3;
218}
219static void from_exten(fpdata *fpd, uae_u32 *wrd1, uae_u32 *wrd2, uae_u32 *wrd3)
220{
221 floatx80 f = floatx80_to_floatx80(fpd->fpx, &fs);
222 *wrd1 = (uae_u32)(f.high << 16);
223 *wrd2 = f.low >> 32;
224 *wrd3 = (uae_u32)f.low;
225}
226
227static void to_exten_fmovem(fpdata *fpd, uae_u32 wrd1, uae_u32 wrd2, uae_u32 wrd3)
228{

Callers

nothing calls this directly

Calls 1

floatx80_to_floatx80Function · 0.85

Tested by

no test coverage detected