* ATT reader

This commit is contained in:
peter 1998-11-13 10:10:54 +00:00
parent aae1ef46ae
commit c42ce9d1d0

View File

@ -52,7 +52,11 @@ unit mmx;
uses
cpu;
{$ASMMODE DIRECT}
{$ifndef CPUIDSUP}
{$ASMMODE DIRECT}
{$else}
{$ASMMODE ATT}
{$endif}
{ returns true, if the processor supports the mmx instructions }
function mmx_support : boolean;
@ -123,7 +127,10 @@ begin
end.
{
$Log$
Revision 1.2 1998-05-31 14:15:50 peter
Revision 1.3 1998-11-13 10:10:54 peter
* ATT reader
Revision 1.2 1998/05/31 14:15:50 peter
* force to use ATT or direct parsing
}