怎么样在DELPHI中镶入汇编;(100分)

  • 主题发起人 主题发起人 hqh0717
  • 开始时间 开始时间
H

hqh0717

Unregistered / Unconfirmed
GUEST, unregistred user!
怎么们在DELPHI中镶入汇编 给我举个例子好吗 先谢谢了!!!
 
function LongMul(X, Y: Integer): Longint; <br>asm<br>&nbsp; MOV &nbsp; &nbsp; EAX,X<br>&nbsp; IMUL &nbsp; &nbsp;Y<br>end;
 
把你的汇编语句头尾标上asm和end,如下:<br>asm<br>汇编...<br>end;<br>就可以了
 
function LongMul(X, Y: Integer): Longint; <br>begin<br>asm<br>&nbsp; MOV &nbsp; &nbsp; EAX,X<br>&nbsp; IMUL &nbsp; &nbsp;Y<br>end;//new<br>end;
 
多人接受答案了。
 
后退
顶部