Previous: CPU_haveMMX function To the Table of Content Next: LZDelay procedure

- 4.75.1.5 -
Standard Units
ZenTimer Unit
ZenTimer Unit Procedures and Functions

CPU_have3DNow function

Targets: MS-DOS, OS/2, Win32


ZenTimer Unit

Returns True if the processor supports AMD 3DNow!™ extensions.

Declaration:
function CPU_have3DNow: Boolean;
Remarks:
This function determines if the processor supports the AMD 3DNow! extended instruction set.

Example:
{$ifndef __CON__}
  This program must be compiled for MS-DOS, OS/2 or Win32 console mode
{$endif}
uses ZenTimer;
begin
  if CPU_have3DNow then  
    Writeln('3DNow! technology supported')
  else
    Writeln('3DNow! technology not supported');
end.



Previous: CPU_haveMMX function To the Table of Content Next: LZDelay procedure
CPU_haveMMX function Table of Content LZDelay procedure

- 4.75.1.5 -