- 4.80.1.5. -
Table of Contents
4. Standard Units
4.80. ZenTimer - Full-featured ZTimer Library
4.80.1. ZenTimer Unit Procedures and Functions
4.80.1.5. CPU_have3DNow function
4.80.1.5. 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.
- 4.80.1.5. -