diff options
| author | ptitSeb <sebastien.chev@gmail.com> | 2021-04-17 10:50:33 +0200 |
|---|---|---|
| committer | ptitSeb <sebastien.chev@gmail.com> | 2021-04-17 10:50:33 +0200 |
| commit | 248cd2e749dcc5931113a405e232e9a90c130089 (patch) | |
| tree | 6eddccb3f60c2969ae2a839280866f91a4a6fb0a /src/include | |
| parent | 3b550eeed3ecd47546ad0c0664a458af463c57af (diff) | |
| download | box64-248cd2e749dcc5931113a405e232e9a90c130089.tar.gz box64-248cd2e749dcc5931113a405e232e9a90c130089.zip | |
Fixed nexttoward(f) wrapped functions, and improved long double handling
Diffstat (limited to 'src/include')
| -rwxr-xr-x | src/include/x64emu.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/include/x64emu.h b/src/include/x64emu.h index 21f435c8..0a928afd 100755 --- a/src/include/x64emu.h +++ b/src/include/x64emu.h @@ -55,6 +55,7 @@ void UnimpOpcode(x64emu_t* emu); uint64_t ReadTSC(x64emu_t* emu); double FromLD(void* ld); // long double (80bits pointer) -> double +long double LD2localLD(void* ld); // long double (80bits pointer) -> long double (80 or 128bits) void LD2D(void* ld, void* d); // long double (80bits) -> double (64bits) void D2LD(void* d, void* ld); // double (64bits) -> long double (64bits) |