太
太阳河上
Unregistered / Unconfirmed
GUEST, unregistred user!
有两个汇编,结果是什么:
在一个函数中,插入以下汇编,
asm
mov eax,[ebp]
mov callerBP,eax
end;
其它delphi代码
asm
mov eax,Index
mov edx,Item
push CallerBP
call ApplyFunction//这个函数返回Integer
pop ecx
mov @Result,eax
end;
第一次调用ApplyFunction时正常,第二次调这个时不正常了
我想知道:经过汇编后,出来的结果是什么?
在一个函数中,插入以下汇编,
asm
mov eax,[ebp]
mov callerBP,eax
end;
其它delphi代码
asm
mov eax,Index
mov edx,Item
push CallerBP
call ApplyFunction//这个函数返回Integer
pop ecx
mov @Result,eax
end;
第一次调用ApplyFunction时正常,第二次调这个时不正常了
我想知道:经过汇编后,出来的结果是什么?