tb0444.pp 171 B

12345678910111213
  1. {$mode delphi}
  2. unit tb0444;
  3. interface
  4. function Trunc(const x : Single) : Integer;
  5. implementation
  6. function Trunc(const x : Single) : Integer; register;
  7. asm
  8. end;
  9. end.