本文整理自网络,侵删。
function IsVMwarePresent(): LongBool; stdcall;
begin
Result := False;
{$IFDEF CPU386}
try
asm
mov eax, 564D5868h
mov ebx, 00000000h
mov ecx, 0000000Ah
mov edx, 00005658h
in eax, dx
cmp ebx, 564D5868h
jne @@exit
mov Result, True
@@exit:
end;
except
Result := False;
end;
{$ENDIF}
end;
本文来自Delphi之窗,原文地址:http://www.52delphi.com
相关阅读 >>
关于公历与农历换算和时间处理的单元 calendar.pas
更多相关阅读请进入《Delphi》频道 >>