我的第一个masm32 汇编程序
个人笔记本配置win8系统,intel core i5 cpu。
一、masm32的安装
官网DownLoad masm32一路下来,安装到D盘根目录下即可。
二、配置环境变量(用户变量)
include ==>> D:\masm32\include
lib ==>> D:\masm32\lib
path ==>> D:\masm32\bin
三、写一个汇编代码保存为D:\masm32\hello.asm
.386
.model flat,stdcall
option casemap:none
include kernel32.inc
includelib kernel32.lib
include masm32.inc
includelib masm32.lib
.data
hello db "hello world" ;如果用s