|
马上注册,结交更多好友,享用更多功能^_^
您需要 登录 才可以下载或查看,没有账号?立即注册
x
- .386
- .model flat,stdcall
- option casemap:none
- ;>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
- include windows.inc
- include kernel32.inc
- include user32.inc
- includelib kernel32.lib
- includelib user32.lib
- ;>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
- .data
- lpszText db '地址为%s',0
- lpszCaption db 'test',0
- ;>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
- .code
- start: pushad
- call @f
- @@:
- pop ebx
- sub ebx,offset @b
- invoke MessageBox 0,ebx ,lpszCaption,MB_OK
- end start
复制代码 |
|