摘要: 汇编语言程序设计第5~8章小结: 第5章: 直接寻址和间接寻址问题: 直接寻址:mov dl,[0]; dl=((ds)*16+0)间接寻址:mov bx,0 mov dl,[bx];dl=((ds)*16+bx) assume cs:codecode segment mov ax,1 mov cx 阅读全文
posted @ 2019-01-03 15:49 CYMWN 阅读(281) 评论(0) 推荐(0) 编辑