maplecheck Expert Cheater
Reputation: 0
Joined: 22 Jan 2006 Posts: 139
|
Posted: Sun Mar 22, 2009 11:27 pm Post subject: how to convert asm to delphi code? easy? |
|
|
ASM Code:
| Code: | nop
push ebp
mov ebp,esp
add esp,f8
push ebx
mov [ebp-04],eax
lea ebx,[ebp-08]
pushad
mov ecx,[ebp-04]
add ecx,00001204
call dword ptr [00e0ae00]
mov [ebp-08],eax
popad
mov eax,[ebx]
pop ebx
pop ecx
pop ecx
pop ebp
ret
|
how to change to delphi code?
| Code: |
function unknow2(i:dword):dword; //I guess?
begin
//here fill what code?
asm
pushad
mov ecx,[ebp-04]
add ecx,$1204
call dword ptr [$00e0ae00]
mov [ebp-08],eax
popad
end;
//here fill what code?
end;
|
|
|