+ better test for IMUL and SHRD !

This commit is contained in:
pierre 1999-04-16 10:03:27 +00:00
parent e39755387b
commit 97b2b7f0b7

View File

@ -3,5 +3,13 @@ begin
{$asmmode intel}
asm
SHRD [ESI-8], EAX, CL
SHLD EBX,ECX,5
IMUL ECX,dword [EBP-8],5
end;
{$asmmode att}
asm
shrdl %cl,%eax,-8(%esi)
shldl $5,%ecx,%ebx
imull $5,-8(%ebp),%ecx
end;
end.