H
hlei
Unregistered / Unconfirmed
GUEST, unregistred user!
function GetBasicAddress(): DWORD
assembler;
asm
mov eax, dword ptr [$08F3CC4]
mov ecx, dword ptr [eax+$01C]
mov Result, dword ptr [ecx+$028]
end;
mov Result, dword ptr [ecx+$028] 编译时提示错误:E2116 Invalid combination of opcode and operands
请问这句该要怎么写?
assembler;
asm
mov eax, dword ptr [$08F3CC4]
mov ecx, dword ptr [eax+$01C]
mov Result, dword ptr [ecx+$028]
end;
mov Result, dword ptr [ecx+$028] 编译时提示错误:E2116 Invalid combination of opcode and operands
请问这句该要怎么写?