
ASM
文章平均质量分 54
普通网友
这个作者很懒,什么都没留下…
展开
-
win32 asm Hello World Demo
编译和链接选项ml.exe /c /coff /nologo /Folink.exe /SUBSYSTEM:WINDOWS /nologo /OUT Hello World Demo Compiled with MASMPlus .386.model flat, stdcalloption casemap :noneinclude windows.i原创 2011-06-21 22:01:00 · 1007 阅读 · 0 评论 -
C 函数调用过程Ollydbg 反汇编分析 Demo int add(int,int)
待分析Demo代码:int add(int a,int b){ return a+b;}int main(){ int a=0xaa; int b=0xbb; printf("a+b=%d",add(a,b));} 编译,不优化这里参数0xBB,0xAA压栈 push eax,push ecx说明这里默认的调用约定是__stdcall然后去调原创 2011-06-29 22:00:00 · 1405 阅读 · 1 评论