能力值:
( LV4,RANK:50 )
|
-
-
2 楼
一点个人理解:
00401010 push ebp ;保护现场
00401011 mov ebp,esp ;给EBP赋值
00401013 sub esp,40h ;为局部变量申请空间
00401016 push ebx ;保护现场
00401017 push esi ;保护现场
00401018 push edi ;保护现场
00401019 lea edi,[ebp-40h];取地址
0040101C mov ecx,10h ;循环次数
00401021 mov eax,0CCCCCCCCh;初始化值
00401026 rep stos dword ptr [edi];变量初始化
|
|
|