- 1、本文档共33页,可阅读全部内容。
- 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
汇编 第六章子程序(need)课件
第六章 子程序结构;code segment
main proc far
......
call subr1
......
ret
main endp
subr1 proc near
......
ret
subr1 endp
code ends;例6.2 调用程序和子程序不在同一代码段中
segx segment
subt proc far
......
ret
subt endp
......
call subt
......
segx ends
segy segment
......
call subt
......
segy ends;保存与恢复寄存器
subt proc far
push ax
push bx
push cx
push dx
......
pop dx
pop cx
pop bx
pop ax
ret
subt endp; 子程序调用(中断调用):隐含使用堆栈保存返回地址
call near ptr subp
(1) 保存返回地址
(2) 转子程序
(IP) ← subp的偏移地址
call far ptr subp
(1) 保存返回地址
(2) 转子程序
(CS) ← subp的段地址
(IP) ← subp的偏移地址;(IP);;例6.3 十进制到十六进制的转换程序(通过寄存器传送变量)P199
decihex segment ; 10?16
assume cs: decihex
main proc far
push ds
sub ax, ax
push ax
repeat: call decibin ; 10?2
call crlf
call binihex ; 2?16
call crlf
jmp repeat
ret
main endp;decibin proc near ; 10?2
mov bx, 0
newchar: mov ah, 1
int 21h
sub al, 30h
jl exit ; 0退出
cmp al, 9d
jg exit ; 9退出
cbw
xchg ax, bx
mov cx, 10d
mul cx
xchg ax, bx
add bx, ax
jmp newchar
exit: ret
decibin endp;binihex proc near ; 2?16 (P162)
mov ch, 4
rotate: mov cl, 4
rol bx, cl
mov al,
文档评论(0)