MMTools.2.0.FullSource
I work with Builder C ++.
For me these components function normal.
But are incompatibile with Delphi 7 compiler, and I don't know how to fix errors with TLargeInteger:
errors in MOV mnemonics (operand size mismatch):
Код:
function GetCPUCycles: int64;
asm
{$IFDEF WIN32}
db 00fh //RDTSC
db 031h
{$IFNDEF DELPHI4}
mov HiWord(Result), edx
mov LoWord(Result), eax
{$ENDIF}
{$ENDIF}
end;