http://kaliblog.tistory.com/18
구분 |
__cdecl |
__stdcall |
__fastcall |
인자 전달 방법 |
스택 |
스택 |
레지스터, 스택 |
스택 해제 방법 |
호출한 함수 |
호출된 함수 |
호출된 함수 |
#include <stdio.h>
int __fastcall sum(int a, int b, int c)
{
return a+b+c;
}
int main()
{
int s;
s =sum(1, 2, 3);
printf("%d ", s);
return 0;
}
콜린 컨벤션 __fastcall 함수의 어셈블리어 코드
저녁때 또 올려야지~♡♡♡♡♡
댓글 0