首页
社区
课程
招聘
[旧帖] [求助]谁给个RadASM初级例子~~ 0.00雪花
发表于: 2007-2-26 09:31 3547

[旧帖] [求助]谁给个RadASM初级例子~~ 0.00雪花

2007-2-26 09:31
3547
收藏
免费 0
支持
分享
最新回复 (1)
雪    币: 2054
活跃值: (272)
能力值: ( LV9,RANK:220 )
在线值:
发帖
回帖
粉丝
2
.386 
.model flat,stdcall 
option casemap:none 
include windows.inc 
include kernel32.inc 
includelib kernel32.lib 
include user32.inc 
includelib user32.lib 

.data 
MsgBoxCaption  db "Iczelion Tutorial No.2",0 
MsgBoxText       db "Win32 Assembly is Great!",0 

.code 
start: 
invoke MessageBox, NULL, addr MsgBoxText, addr MsgBoxCaption, MB_OK 
invoke ExitProcess, NULL 
end start 
2007-2-26 11:38
0
游客
登录 | 注册 方可回帖
返回
//