Registriert seit: 19. Sep 2011
Ort: Deutschland
485 Beiträge
Delphi 11 Alexandria
|
AW: Auslesen ob Integer Positiv oder Negativ ist
11. Apr 2019, 19:32
Delphi-Quellcode:
function IsNegative( const X: Integer): Boolean;
asm
SHR EAX, 31
end;
Dennis
Geändert von Dennis07 (11. Apr 2019 um 19:36 Uhr)
|