Thema
:
Delphi
Exponent aus Extended extrahieren?
Einzelnen Beitrag anzeigen
himitsu
Registriert seit: 11. Okt 2003
Ort: Elbflorenz
44.184 Beiträge
Delphi 12 Athens
#
14
Re: Exponent aus Extended extrahieren?
2. Mai 2009, 20:25
und so?
zusammenfalten
·
markieren
Delphi-Quellcode:
class
operator
FIXCOMMA64.Multiply(
const
Left, Right: FIXCOMMA64): FIXCOMMA64;
const
idiv: LongInt = 1000000000;
asm
mov eax, &Left
fild qword ptr [eax]
mov eax, &Right
fild qword ptr [eax]
fmulp st(1), st(0)
fidiv dword ptr [&idiv]
mov eax, &Result
fistp qword ptr [eax]
wait
end
;
$2B or not $2B
Zitat
himitsu
Öffentliches Profil ansehen
Besuche die Homepage von himitsu!
Mehr Beiträge von himitsu finden