.386 ; 编译器指令,使用386指令集.model flat, stdcall ; model汇编指令,程序的内存模式, flat是windows程序,没有远近指针,stdcall是windows函数用的参数方式,即参数从右向左传递option casemap :none ; 标签是否区分大小写include \masm32\include\windows.inc ; 包含了Win32 API 的一些常量和函数定义include \masm32\include\kernel32.inc ; 包含了后面使用的ExitProcess函数include \masm32\include\masm32.inc ; 包含了后面使用的StdOut函数,不是标准的Win32函数,由MASM提供includelib \masm32\lib\kernel32.lib ; 库文件includelib \masm32\lib\masm32.lib.data HelloWorld db "Hello World!", 0 ; 定义使用的字符串常量,db代表define byte最后跟一个NUL,表示ANSI字符集结束符.code ; 开始代码区start: ; 所有的代码要在start标签后、end start前 invoke StdOut, addr HelloWorld ; 调用函数StdOut,参数量HelloWorld的地址注意StdOut是MASM提供的宏其它编辑器里可以使用WriteConsole之类win32函数代替 invoke ExitProcess, 0 ; 调用ExitProcessend start
保存文件2. 编译选择菜单 Project-Assemble ASM file 进行编译,生成obj文件:再选择Link 链接文件,生成可执行文件:运行效果:3. 命令行编译ml /c /Zd /coff hello.asmlink /SUBSYSTEM:CONSOLE hello.obj
也可以生成 hello.exe五、调用Windows API的版本.386.model flat, stdcalloption casemap :noneinclude \masm32\include\windows.incinclude \masm32\include\kernel32.incinclude \masm32\include\user32.incincludelib \masm32\lib\kernel32.libincludelib \masm32\lib\user32.lib.data HelloWorld db "Hello World!", 0.codestart: invoke MessageBox, NULL, addr HelloWorld, addr HelloWorld, MB_OK invoke ExitProcess, 0end start
直接在菜单里编译运行:命令行编译的话使用:ml /c /Zd /coff hellow.asmlink /SUBSYSTEM:WINDOWS hellow.obj
这里SUBSYSTEM使用WINDOWS代替了CONSOLE,表示是一个Windows GUI程序(图片来源网络,侵删)
0 评论