您好,欢迎访问三七文档
当前位置:首页 > IT计算机/网络 > 软件工程 > 汇编语言-王爽(第二版)-实验九-根据材料编程
实验九根据材料编程【实验内容】在屏幕中间分别显示绿色、绿底红色、白底蓝色的字符串‘welcometomasm!’【实验过程】;程序名:t9-12.asmdatasegmentstringdb'welcometomasm!'lenequ$-stringdataendscodesegmentassumecs:codestart:movah,0;设置显示方式moval,3;80*25彩色文本显示方式int10hmovbp,segstring;回送变量或标号的段地址moves,bpmovbp,offsetstringmovcx,len;cx=串长度movdh,9movdl,30;dx=起始行列号moval,0;光标返回的起始位置movbl,02hmovah,13h;显示字符串int10hmovcx,len;cx=串长度movdh,10movdl,30;dx=起始行列号moval,0;光标返回的起始位置movbl,24hmovah,13h;显示字符串int10hmovcx,len;cx=串长度movdh,11movdl,30;dx=起始行列号moval,0;光标返回的起始位置movbl,71hmovah,13h;显示字符串int10hmovah,4chint21hcodeendsendstart【实验结果】
本文标题:汇编语言-王爽(第二版)-实验九-根据材料编程
链接地址:https://www.777doc.com/doc-5076683 .html