A Crash Course in x86 Assembly for Reverse Engineers

(Jeff_L) #1

1.7.6 Function calls


1.7.6.1 C


function (int x, char y );

1.7.6.2 x86 assembly


mov eax, y
push eax
mov eax, x
push eax
call function

Free download pdf