求助32位汇编环境的搭建
我参照罗云彬的文章,下载了相关的程序,(http://211.90.241.130:22366/view.asp?file=15)
环境变量也设了
然后把他的例子输入了进去
.386
.model flat,stdcall
option casemap :none ; case sensitive
include windows.inc
include kernel32.inc
includelib kernel32.lib
.data
szCaption db 'Win32汇编例子',0
szText db 'Win32汇编,Simple and powerful!',0
.code
start:
invoke MessageBox,NULL,addr szText,addr szCaption,MB_OK
invoke ExitProcess,NULL
end start
编译的时候总是提示MessageBox找不到,不知道是什么问题,求助牛人....不胜感激