彙編,高級過程

C語言裏面AddTwo函數 int AddTwo( int x, int y) { return x + y; } 翻譯成彙編能夠翻譯成這樣:post AddTwo PROC push ebp mov ebp,esp mov eax,[ebp+ 12 ] add eax,[ebp+ 8 ] pop ebp ret AddTwo endp 而後main函數調用:spa main PROC push
相關文章
相關標籤/搜索