|
马上注册,结交更多好友,享用更多功能^_^
您需要 登录 才可以下载或查看,没有账号?立即注册
x
-
- .386
- .model flat,stdcall
- option casemap:none
-
- include windows.inc
- include kernel32.inc
- include user32.inc
- includelib kernel32.lib
- includelib user32.lib
-
- .data
- len dd 0
- szcaption db '提示',0
- szText db 'NAG窗口,求去掉',0
- szfail db '注册成功',0
-
- .code
- start:
- lea eax,aend
- lea edx,asr
- sub eax,edx
- mov len,eax
- lea edi,asr
- mov ecx,len
- jiami: xor byte ptr [edi],55h
- inc edi
- loop jiami
- mov eax,daima
- push eax
- retn
- asr::
- invoke MessageBox,0,offset szfail,offset szcaption,MB_OK or MB_ICONWARNING
- jmp tuichu
- aend::
- call eax
- mov edx,eax
- cmp edx,1
- je daima
- nop
- nop
- daima: invoke MessageBox,0,offset szText,offset szcaption,MB_OK
- lea eax,aend
- lea edx,asr
- sub eax,edx
- mov len,eax
- lea edi,asr
- mov ecx,len
- jiemi: xor byte ptr [edi],55h
- inc edi
- loop jiemi
- jmp asr
- tuichu: invoke ExitProcess,0
-
- end start
|
|