首页
社区
课程
招聘
[旧帖] [求助]请学习过intel汇编语言程序设计(第五版)这本书的朋友来看看 0.00雪花
发表于: 2012-10-27 15:23 1486

[旧帖] [求助]请学习过intel汇编语言程序设计(第五版)这本书的朋友来看看 0.00雪花

2012-10-27 15:23
1486
求求大家帮帮忙~~说详细一点~~如何使用masm615(intel汇编语言程序设计那个编译器)编译如下的代码啊~~帮帮手啦       源程序代码如何:
TITLE Add and Subtract, Version 2         (AddSub2.asm)

; This program adds and subtracts 32-bit integers
; and stores the sum in a variable.
; Last update: 2/1/02

INCLUDE Irvine32.inc

.data
val1     dword  10000h
val2     dword  40000h
val3     dword  20000h
finalVal dword  ?

.code
main PROC

        mov eax,val1        ; start with 10000h
        add eax,val2        ; add 40000h
        sub eax,val3        ; subtract 20000h
        mov finalVal,eax        ; store the result (30000h)
        call DumpRegs        ; display the registers

        exit
main ENDP
END main

[注意]传递专业知识、拓宽行业人脉——看雪讲师团队等你加入!

收藏
免费 0
支持
分享
最新回复 (2)
雪    币: 959
活跃值: (66)
能力值: ( LV2,RANK:10 )
在线值:
发帖
回帖
粉丝
2
2012-10-27 21:50
0
雪    币: 88
活跃值: (335)
能力值: ( LV4,RANK:55 )
在线值:
发帖
回帖
粉丝
3
看见我们学长在学,问下是不是对于我们这一行,学这个课程是不是得必须的?
2012-10-27 21:53
0
游客
登录 | 注册 方可回帖
返回
//