[旧帖]
[求助]请学习过intel汇编语言程序设计(第五版)这本书的朋友来看看
0.00雪花
发表于:
2012-10-27 15:23
1486
[旧帖] [求助]请学习过intel汇编语言程序设计(第五版)这本书的朋友来看看
0.00雪花
求求大家帮帮忙~~说详细一点~~如何使用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
[注意]传递专业知识、拓宽行业人脉——看雪讲师团队等你加入!