




版權(quán)說(shuō)明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請(qǐng)進(jìn)行舉報(bào)或認(rèn)領(lǐng)
文檔簡(jiǎn)介
1、實(shí)驗(yàn)一實(shí)驗(yàn)一 基本程序編程和程序調(diào)試基本程序編程和程序調(diào)試一、實(shí)驗(yàn)?zāi)康?、 掌握數(shù)碼轉(zhuǎn)換等基本程序設(shè)計(jì)的技巧和方法。2、 熟悉 debug 命令。3、 學(xué)會(huì)和掌握用 debug 調(diào)試程序的方法。二、實(shí)驗(yàn)設(shè)備pc 機(jī)一臺(tái),裝有 dos 基本系統(tǒng)三、實(shí)驗(yàn)內(nèi)容及步驟用 debug 建立、匯編和運(yùn)行調(diào)試程序的操作。debug 是 dos 系統(tǒng)支持的用于匯編語(yǔ)言源程序調(diào)試的系統(tǒng)軟件。它共有 19 條命令完成相應(yīng)的功能,命令及其格式可參閱附錄一。(一)(一) debugdebug 操作練習(xí)操作練習(xí)1)實(shí)驗(yàn)調(diào)試程序)實(shí)驗(yàn)調(diào)試程序程序的功能是從程序的功能是從 3500h 內(nèi)存單元開(kāi)始建立內(nèi)存單元開(kāi)始建立 0-
2、15 共共 16 個(gè)數(shù)據(jù)個(gè)數(shù)據(jù)。程序如下:地址 (h)機(jī)器碼(h)助記符2000bf0035movdi, 35002003b91000mov cx, 00102006b80000movax, 000020099esahf200a8805mov bytedi,al200c47inc di200d40inc ax200e27daa200fe2f9loop 200a2011f4hlt 2)實(shí)驗(yàn)步驟:(1)輸入與修改 啟動(dòng) dos,在 dos 提示符下輸入 d e b u g 后回車,屏幕立即顯示 debug 提示符“” ,表明已進(jìn)入 debug 狀態(tài),可以執(zhí)行 debug 的各種命令。 用 debu
3、g 中的匯編命令 “a 地址”將程序建立在內(nèi)存單元中。 在提示符“”下鍵入 : “a 2000 ” 此時(shí)顯示器上將會(huì)顯示程序的段地址 cs 和偏移地址 ip,你就可以輸入以上的程序了。即顯示 169c :2000 鍵入 mov di, 3500 169c: 2003 mov cx, 0010169c: 2011 hlt : : : 用反匯編命令 “u 地址”檢查程序在提示符“”下,鍵入 “u 2000”,將從 2000 內(nèi)存單元開(kāi)始的內(nèi)容反匯編,屏幕上顯示 169c:2000 bf0035 mov di, 3500 169c:2003 b91000 mov cx, 0010 169c:2006
4、 b8000 mov ax, 0000 : : : : : : 169c:2011 f4 hlt當(dāng)發(fā)現(xiàn)程序有錯(cuò)時(shí),可用匯編命令“a 地址”進(jìn)行修改,如要修改 200a 單元中的指令, 則鍵入“a 200a” ,屏幕顯示 169c:200a ,然后再鍵入 mov bytedi, al,就把錯(cuò)誤的程序改正了。(2)顯示和修改數(shù)據(jù)用修改內(nèi)存單元命令 “e 地址” 在指定內(nèi)存單元中存入一個(gè)數(shù)。如要在 3500 為首址的單元中存入 14h 和 25h 兩個(gè)數(shù)據(jù),可在提示符“”下,鍵入:“ 3500”顯示 169c:3500 鍵入 14,按空格鍵 25,按空格鍵用顯示內(nèi)存命令 “d 地址” 檢查指定單元的
5、內(nèi)容在提示符“”下,鍵入 “d3500”顯示 1489:3500 14 25 48 02 1489:3510 * * * * : : : : 1489:3570 * * * * 若某單元內(nèi)容有錯(cuò)則可用命令: “e 地址 ”進(jìn)行修正。用顯示和修改命令 “r ”或“r 寄存器名”顯示寄存器或修改其內(nèi)容在提示符“”下,鍵入 “r”顯示 ax=0000 bx=0000 cx=0000 dx=0000 sp=ffee ds=169c es=169c ss=169c cs=169c ip=2000要修改 ip 的內(nèi)容時(shí),鍵入命令 “r ip”后, 顯示 ip 2000,在 2000 之后鍵入新內(nèi)容。(3)
6、程序運(yùn)行程序的運(yùn)行方式有單步運(yùn)行、斷點(diǎn)運(yùn)行和連續(xù)運(yùn)行幾種方式。單步運(yùn)行 輸入 debug 跟蹤命令“t”或“t=地址”或“t=地址 指定次數(shù)” ,可從指定地址處運(yùn)行該單元中的一條指令,以后只要連續(xù)輸入“t”命令就能連續(xù)執(zhí)行一條一條指令。如在提示符“”下,鍵入 “t=2000 ”顯示 :ax=0000 bx=0000 cx=001d dx-0000 sp=ffee bp=0000 si=0000 di=0000 ds=169c es=169c ss=169c cs=169c ip=2000 nv169c:2003 b91000 mov cx, 0010 斷點(diǎn)運(yùn)行用運(yùn)行命令 “g=地址 地址斷點(diǎn)
7、地址斷點(diǎn)”執(zhí)行指定地址的程序在提示符“”下,鍵入 “g=2000 2011 ”顯示 169c:2011 f4 hlt 表示這段程序已經(jīng)執(zhí)行完畢。連續(xù)運(yùn)行輸入 debug 命令“g=地址” ,執(zhí)行指定地址的程序(4)用顯示內(nèi)存命令檢查運(yùn)行結(jié)果在提示符“”下,鍵入命令 “d 地址” ,根據(jù)其中的內(nèi)容判斷程序運(yùn)行是否正確。如檢查以上程序執(zhí)行后的結(jié)果,在提示符“”下,鍵入“ d 3500” ,可顯示169c:3500 00 01 02 03 04 15169c:3510 (二)數(shù)碼轉(zhuǎn)換程序及其調(diào)試1、 將 ascii 碼表示的十進(jìn)制數(shù)轉(zhuǎn)換為二進(jìn)制數(shù)1)程序設(shè)計(jì)的算法及其程序十進(jìn)制數(shù)據(jù)可表示為:di代表
8、十進(jìn)制數(shù) 1,2,3,9,0 上式可轉(zhuǎn)換為: 由式(2)可歸納十進(jìn)制數(shù)轉(zhuǎn)換為二進(jìn)制數(shù)的方法:從十進(jìn)制的最高位 dn 開(kāi)始乘 10 加次位的操作,將結(jié)果再乘 10 再加下一次位,如此重復(fù),則可求出二進(jìn)制數(shù)結(jié)果來(lái)。程序流程及參考程序如圖 1-1。這里我們規(guī)定:被轉(zhuǎn)換的 ascii 碼十進(jìn)制數(shù)存放在 3500h3504h 單位中。而轉(zhuǎn)換結(jié)果存放在 3510h3511h 單元中。2)實(shí)驗(yàn)步驟)(iniinnnndddd)()(ddddddnnninii(1)輸入程序并檢查無(wú)誤。(2)在 3500h3504h 單元存入十進(jìn)制數(shù) 12 的 ascii 碼,即 e3500h,并輸入3030303132h。(
9、3)g=2000,運(yùn)行程序,并用 ctrl+c 來(lái)中斷程序返回監(jiān)控狀態(tài)。(4)用 d3510來(lái)查看結(jié)果,應(yīng)為:3510 0c 00(5)反復(fù)試幾組數(shù),考查程序的正確性。地址(h) 助記符 注釋2000 mov si,3500 ;源地址2003 mov di,3510 ;結(jié)果地址2006 mov bx,000a ;乘數(shù) 102009 mov cx,0004 ;計(jì)數(shù)200c mov ah,00 ;ah 清零200e mov al,si ;取被轉(zhuǎn)換數(shù)2010 sub al,30 ;ascii 碼變十進(jìn)制數(shù)2012 imul bx ;高位(ax)*(bx)送 ax2014 add al,si+01 ;
10、取下一位1017 sub al,30 ;ascii 碼減 30 變十進(jìn)制數(shù)2019 inc si ;源地址指針+1201a loop 2012 ;cx-1,若 cx 不等于零則繼續(xù)201c mov di,ax ;若 cx 等于零則存結(jié)果201e int 3 圖 1-12將十進(jìn)制數(shù)的 ascii 碼轉(zhuǎn)換為 bcd 碼1)程序流程和程序設(shè)從鍵盤輸入的五位十進(jìn)制數(shù)的 ascii 碼已存放在 3500h 起始的內(nèi)存單元內(nèi),把它轉(zhuǎn)換成 bcd碼后,再按位分別存入 350ah 起始的內(nèi)存單元內(nèi)。若輸入的不是十進(jìn)制數(shù)的 ascii 碼,則對(duì)應(yīng)存放結(jié)果的內(nèi)容為“ff” 。一字節(jié) ascii 碼取其低四位即變?yōu)?/p>
11、 bcd 碼,程序流程圖及考程序如圖 1-2所示。2)實(shí)驗(yàn)步驟(1) 輸入程序并檢查無(wú)誤。(2) 在 3500h3504h 單元中存入五位十進(jìn)制數(shù)的 ascii 碼,即e3500,并輸入 31,32,33,34,35。(3) g=2000,運(yùn)行以上程序。(4) d350a,顯示結(jié)果為:0000:350a 01 02 03 04 05 cc(5) 反復(fù)試幾組數(shù),考查程序的正確性。地址(h) 助記符 注釋2000 mov cx,0005;循環(huán)計(jì)數(shù)器賦初值2003 mov di,3500;ascii 碼首址2006 mov bl,ff; 錯(cuò)誤標(biāo)志送 bl2008 mov al,di;送 ascii
12、碼至 al200a cmp al,3a; 比較 al 與 3ah200c jnb 2014; 不低于 3a 則轉(zhuǎn) 2014200e sub al,30; 低于 3a 則取 ascii 碼的低四位2010 jb 2014; 低于 30 則轉(zhuǎn) 20142012 mov bl,al; 否則 al 內(nèi)容送 bl,取代 ff2014 mov al,bl; 結(jié)果或錯(cuò)誤標(biāo)志送 al2016 mov di+0a,al2019 inc di201a loop 2006201c int 3圖 1-23將十六位二進(jìn)制數(shù)轉(zhuǎn)換為 ascii 碼表示的十進(jìn)制數(shù)1)程序及其流程十六位二進(jìn)制數(shù)的值域?yàn)?065535,最大可轉(zhuǎn)
13、換為五位十進(jìn)制數(shù)。算法:五位十進(jìn)制數(shù)可表示為: di:表示十進(jìn)制數(shù) 09。 因此,將十六位二進(jìn)制數(shù)轉(zhuǎn)換為五位 ascii 碼表示表示的十進(jìn)制數(shù),就是求 d1d4,并將它化為 ascii 碼。程序流程圖如圖 1-3 所示,設(shè)源數(shù)據(jù)存于 35003501h 單元中,結(jié)果數(shù)存于35103514h 單元中。2)實(shí)驗(yàn)步驟(1) 輸入程序并檢查無(wú)誤。(2) 在 35003501h 單元中存放 0c00,運(yùn)行程序并檢查結(jié)果,應(yīng)看到 35103514h 單元中的數(shù)依次為 3030303132。dddddnd(3) 反復(fù)試幾組數(shù),并運(yùn)行程序、觀察結(jié)果。地址(h) 助記符 注釋2000 mov dx,3500;取
14、二進(jìn)制數(shù)2004 mov si,3515; 目標(biāo)首址在 35102007 dec si2008 mov ax,dx200a mov dx,0000200d mov cx,000a 2010 div cx; ; 除 102012 xchg ax,dx2014 add al,302016 mov si,al2018 cmp dx,0000201b jne 2007201d cmp si,3510 ; 填余下高位為 02021 jz 202a; 2023 dec si2024 mov al,302026 mov si,al2028 jmp 201d202a int 3圖 1-34、 十六進(jìn)制數(shù)轉(zhuǎn)換為
15、 ascii 碼1)程序及其流程經(jīng)過(guò) cpu 處理后的十六進(jìn)制數(shù)存放在起始地址為 3500h 的內(nèi)存單元中,把它們轉(zhuǎn)換成 ascii碼之后,再分別存入起始地址為 350ah 的內(nèi)存單元中。 從表 2-1 中可知,十六進(jìn)制數(shù)加 30h 即可得到 0h9h 的 ascii 碼,而要得到 ahfh的 ascii 碼,則需再加 7h。程序流程圖及參考程序如圖 1-4 所示。2)實(shí)驗(yàn)步驟(1) 輸入程序并檢查無(wú)誤。(2) 在 35003501h 單元中存入四位十六進(jìn)制數(shù) 203b,即e3500,并輸入 3b,20。(3) g=2000,運(yùn)行以上程序(4) d350a,顯示結(jié)果為:0000:350a 42
16、 33 30 32 cc輸入數(shù)據(jù)與結(jié)果 ascii 碼對(duì)應(yīng)順序相反。(5) 反復(fù)試幾組數(shù)??疾槌绦虻恼_性。地址(h) 助記符 注釋2000 mov cx,00042003 mov di,35002006 mov dx,di2008 mov ax,dx200a and ax,000f ;取低四位值200d cmp al,0a; ; 判是否“0”-“9”200f jb 2013 ; 是“0”-“9”轉(zhuǎn) 20132011 add al,07; 是“a”-“f” ,加 72013 add al,30; 轉(zhuǎn)換為 ascii 碼2015 mov di+0a,al2018 inc di2019 push
17、cx ;保護(hù)循環(huán)計(jì)數(shù)器內(nèi)容201a mov cl,04; 移位次數(shù)送 cl201c shr dx,cl201e pop cx201f loop 20082021 int 3圖 1-45bcd 碼轉(zhuǎn)換為二進(jìn)制數(shù)1) 程序及其流程設(shè)四個(gè)二位十進(jìn)制數(shù)的 bcd 碼存放在起始地址為 3500h 的單元中,轉(zhuǎn)換出的二進(jìn)制數(shù)碼存入起始地址為 3510h 的內(nèi)存單元中,程序流程圖及參考程序如圖 1-5 所示。地址(h) 助記符 注釋2000 mov cx,00042003 mov di,35002006 mov al,di2008 add al,al ;乘 2200a mov bl,al200c add a
18、l,al ;乘 2200e add al,al ;乘 22010 add al,bl ;乘 102012 inc di2013 mov ah,002015 add al,di; bcd 碼十位與個(gè)位加2017 mov di+0f,ax;存結(jié)果 圖 1-5201a inc di201b loop 2006201d int 32) 實(shí)驗(yàn)步驟(1) 輸入程序并檢查無(wú)誤。(2) 在 35003507 單元中存入四個(gè)十進(jìn)制數(shù)(12,34,56,78)的 bcd 碼,即 e3500 輸入 01,02,03,04,05,06,07,08。(3) g=2000,運(yùn)行以上程序。(4) d3510,顯示結(jié)果為 3
19、510 0c 00 22 00 38 00 4e 00(5) 反復(fù)試幾組數(shù),考查程序的正確性。實(shí)驗(yàn)二實(shí)驗(yàn)二 程序設(shè)計(jì)和程序設(shè)計(jì)和 pcpc 機(jī)上程序調(diào)試操作實(shí)驗(yàn)機(jī)上程序調(diào)試操作實(shí)驗(yàn)一、實(shí)驗(yàn)?zāi)康恼莆粘S贸绦蛟O(shè)計(jì)的基本技巧和方法。學(xué)會(huì)和熟悉使用 masm 匯編程序和 link 連接程序。掌握使用 pc 機(jī)上編程和調(diào)試程序的方法。二、實(shí)驗(yàn)設(shè)備pc 機(jī)一臺(tái),裝有 dos 基本系統(tǒng)和 masm 宏匯編軟件三、三、實(shí)驗(yàn)內(nèi)容及步驟實(shí)驗(yàn)內(nèi)容及步驟(一)按要求編寫程序并在(一)按要求編寫程序并在 debugdebug 下建立、匯編和調(diào)試程序下建立、匯編和調(diào)試程序、四字節(jié)二進(jìn)制數(shù)的加法四字節(jié)二進(jìn)制數(shù)的加法1)程序
20、設(shè)計(jì)要求兩個(gè)字的被加數(shù)存放于 3500h3503h 單元,加數(shù)存于 3504h3507h 單元(存放格式為高位存高地址單元,低位存低地址單元) ,兩數(shù)之和(如不超過(guò)四字節(jié))存放于 3508h350bh 單元。2)實(shí)驗(yàn)步驟()編寫程序。()在 debug 下輸入程序并檢查(程序可存放于 2000h8000h 單元) 。()在 3500h3507h 單元中存入被加數(shù) 014527 和加數(shù) 146758。()運(yùn)行程序后,檢查 3508h350bh 單元中內(nèi)容。()反復(fù)選擇幾組被加數(shù)和加數(shù),檢查結(jié)果,驗(yàn)證程序正確性。0bb0:2000 be0035 mov si,35000bb0:2003 bf083
21、5 mov di,35080bb0:2006 8b04 mov ax,si0bb0:2008 034404 add ax,si+040bb0:200b 8905 mov di,ax0bb0:200d 8b4402 mov ax,si+010bb0:2010 134406 adc ax,si+060bb0:2013 8905 mov di+2,ax0bb0:2015 cc int 3datasegmentfirstdd 014527seconddd 146758thirddd ?dataendsstack segmentparastack stack db 100 dup(?)stack end
22、scodesegmentassumeds:data,cs:codestart: movax,datamovds,axmovax,wordptrfirstaddax,word ptrsecondmovword ptr third,axmovax,word ptr first+2adcax,word ptr second+2movword ptr third+2,axmovah,4chint 21hcode endsend start03 00 00 00 fe ff 00 002、數(shù)據(jù)塊的搬移、數(shù)據(jù)塊的搬移1)程序設(shè)計(jì)思想和要求將內(nèi)存中一數(shù)據(jù)區(qū)中數(shù)據(jù)(源數(shù)據(jù)塊)傳送到另一數(shù)據(jù)區(qū)(目的數(shù)據(jù)塊) 。
23、源數(shù)據(jù)塊和目的數(shù)據(jù)塊區(qū)在內(nèi)存中的位置有兩種情況:兩區(qū)重疊和不重疊,如下圖所示。對(duì)于兩個(gè)數(shù)據(jù)塊不重疊的情況,數(shù)據(jù)的傳送可從數(shù)據(jù)塊的首址開(kāi)始,也可從數(shù)據(jù)塊的末址開(kāi)始;對(duì)于兩個(gè)數(shù)據(jù)塊重疊的情況,則要加以分析,否則重疊部分會(huì)因搬移而遭破壞。處理方法可以是:在源數(shù)據(jù)塊首址目的數(shù)據(jù)塊首址時(shí),從數(shù)據(jù)塊的首址開(kāi)始傳送,在源數(shù)據(jù)塊首址目的數(shù)據(jù)塊首址時(shí),從數(shù)據(jù)塊的末址開(kāi)始傳送。若源數(shù)據(jù)塊首址存放于 si 中,目的數(shù)據(jù)塊首址存放于 di 中,塊字節(jié)數(shù)存放于 cx 中。要求設(shè)計(jì)的程序能夠?qū)崿F(xiàn)不同情況下的數(shù)據(jù)塊傳送。源數(shù)源據(jù)塊數(shù)據(jù)目的塊數(shù)據(jù)目的數(shù)塊據(jù)塊)實(shí)驗(yàn)步驟()編寫程序。()在 debug 下鍵入程序并檢查(程序可
24、存放于 2000h8000h 單元) 。()確定源數(shù)據(jù)塊和目的數(shù)據(jù)塊區(qū)不重疊時(shí)的首址,確定數(shù)據(jù)塊個(gè)數(shù)為 16 個(gè)。并在源數(shù)據(jù)區(qū)送入任意個(gè)數(shù)據(jù)。0bb0:2000 be0035 mov si,35000bb0:2003 b91000 mov cx,00100bb0:2006 8a04 mov al,si0bb0:2008 884410 mov si+10,al0bb0:200b 46 inc si0bb0:200c e2f8 loop 20060bb0:200e cc int 3()運(yùn)行程序后,檢查目的數(shù)據(jù)區(qū)的內(nèi)容。()確定源數(shù)據(jù)塊和目的數(shù)據(jù)塊區(qū)重疊時(shí), 源區(qū)首址目的區(qū)首址時(shí)的首址, 以及數(shù)據(jù)塊
25、個(gè)數(shù)為 16 個(gè),并在源數(shù)據(jù)區(qū)送入任意個(gè)數(shù)據(jù)。運(yùn)行程序后,檢查目的數(shù)據(jù)區(qū)的內(nèi)容。0bb0:2000 be0c35 mov si,350c0bb0:2003 b91000 mov cx,00100bb0:2006 8a04 mov al,si0bb0:2008 8844f4 mov si-0c,al0bb0:200b 46 inc si0bb0:200c e2f8 loop 20060bb0:200e cc int 3從 350a 開(kāi)始輸入 00 01 02 03 04 05 06 07 08 09 10 11 12 13 14 15,得到()確定源數(shù)據(jù)塊和目的數(shù)據(jù)塊區(qū)重疊時(shí), 源區(qū)首址目的區(qū)首
26、址時(shí)的首址, 以及數(shù)據(jù)塊個(gè)數(shù)為 16 個(gè),并在源數(shù)據(jù)區(qū)送入任意個(gè)數(shù)據(jù)。運(yùn)行程序后,檢查目的數(shù)據(jù)區(qū)的內(nèi)容。0bb0:2000 be0035 mov si,35000bb0:2003 b91000 mov cx,00100bb0:2006 8a440f mov al,si+0f0bb0:2009 88441b mov si+1b,al0bb0:200c 4e dec si0bb0:200d e2f7 loop 20060bb0:200f cc int 3從 3500 開(kāi)始輸入 00 01 02 03 04 05 06 07 08 09 10 11 12 13 14 15,運(yùn)行程序,得到:3、無(wú)序數(shù)
27、據(jù)塊的遞增排序、無(wú)序數(shù)據(jù)塊的遞增排序)程序設(shè)計(jì)思想和要求在首址為 3000h 的數(shù)據(jù)區(qū)中存放著一組無(wú)符號(hào)數(shù), 數(shù)據(jù)的長(zhǎng)度存于 3500h 單元內(nèi),要求用冒泡法對(duì)該區(qū)中的數(shù)據(jù)按遞增次序排列。冒泡法的基本思想是從最后一個(gè)數(shù)(或從第一個(gè)數(shù))開(kāi)始,依次把相鄰兩個(gè)數(shù)比較,即第個(gè)數(shù)與第個(gè)數(shù)比較,若大則交換,否則不交換,直到個(gè)數(shù)都比較完為止。此時(shí),其中最小數(shù)排在最前列。然后將剩下的-1 個(gè)數(shù)再按前述方法進(jìn)行,找到 n-1 個(gè)數(shù)中最小的數(shù)。以后重復(fù)進(jìn)行,直到全部按序排列。)實(shí)驗(yàn)步驟()編寫程序。()在 debug 下鍵入程序并檢查(程序可存放于 2000h8000h 單元,只要不與數(shù)據(jù)區(qū)重疊即可) 。()確定
28、數(shù)據(jù)個(gè)數(shù)并輸入 3500h 單元中,在首址為 3500h 的數(shù)據(jù)區(qū)中存入任意無(wú)符號(hào)數(shù)。()運(yùn)行程序并檢查運(yùn)行結(jié)果。()反復(fù)修改數(shù)據(jù)個(gè)數(shù)和數(shù)據(jù)區(qū)中的數(shù),運(yùn)行程序、觀察結(jié)果,驗(yàn)證程序的正確性。datasegmentarray db 89,67,10,1,29,100,98,45count equ8flagdb -1dataendsstack segmentparastack stack db 100 dup(?)stack endscodesegmentassumeds:data,cs:codesort:movax,datamovds,axmovbx,countlp1:cmpflag,0jeexi
29、tdecbxmovcx,bxmovsi,0movflag,0lp2:moval,arraysicmpal,arraysi+1jbe nextxchgal,arraysi+1movarraysi,almovflag,-1next:addsi,1looplp2jmplp1exit:movah,4chint 21hcodeendsendsort4、求數(shù)的平方根、求數(shù)的平方根)程序設(shè)計(jì)思想和要求減奇數(shù)法是一種求取近似平方根和平方根的整數(shù)部分的方法。有公式:n(2k-1)=n2=1若要求數(shù) s 的平方根s, 則可以從 s 中減去奇數(shù) 1、3、5直到減為零或不夠減下一個(gè)奇數(shù)為止,然后統(tǒng)計(jì)減去的奇數(shù)個(gè)數(shù),它
30、就是 s 的近似平方根。被開(kāi)方數(shù)為一個(gè)足夠大的二進(jìn)制數(shù), 存于首址為 4000h 的單元內(nèi),它的方根存放在以 4500h為首的單元內(nèi)。)實(shí)驗(yàn)步驟()編寫程序。datasegmentorg4000hsdw 12345 ;3039h,開(kāi)方后約為 111(6fh)db 4feh dup(?)sq dw ?dataendsstack segmentparastack stack db 100 dup(?)stackendscodesegmentassumeds:data,cs:codestart:movax,datamovds,axmovcx,0000hmovbx,0001hmovax,slp:sub
31、ax,bxaddbx,2inc cxcmpax,0000hjeexitcmpax,bxjle exitjmplpexit:movsq,cxmovah,4chint 21hcodeends endstart()在 debug 下輸入程序并檢查(程序可存放于 2000h8000h 單元,和數(shù)據(jù)存放單元不要重疊) 。()在 4000h 為首的單元中存入一個(gè)任意大的數(shù)。()運(yùn)行程序并檢查運(yùn)行結(jié)果。()反復(fù)修改被開(kāi)方數(shù),運(yùn)行程序、觀察結(jié)果,驗(yàn)證程序的正確性。實(shí)驗(yàn)三實(shí)驗(yàn)三 dos 系統(tǒng)功能調(diào)用及模塊化程序設(shè)計(jì)系統(tǒng)功能調(diào)用及模塊化程序設(shè)計(jì)一、實(shí)驗(yàn)?zāi)康囊弧?shí)驗(yàn)?zāi)康?、 熟悉 dos 系統(tǒng)中基本功能子程序的作用
32、及其調(diào)用方法。3、 結(jié)合 dos 系統(tǒng)中鍵盤和顯示功能子程序的調(diào)用和匯編語(yǔ)言源程序結(jié)構(gòu)設(shè)計(jì)有關(guān)程序。4、 掌握復(fù)雜程序的設(shè)計(jì)思想模塊化程序設(shè)計(jì)的方法。二、實(shí)驗(yàn)設(shè)備二、實(shí)驗(yàn)設(shè)備pc 機(jī)一臺(tái),裝有 dos 基本系統(tǒng)和 masm 宏匯編軟件。三、實(shí)驗(yàn)內(nèi)容及步驟三、實(shí)驗(yàn)內(nèi)容及步驟(一)(一)dosdos 鍵盤、顯示基本功能子程序調(diào)用鍵盤、顯示基本功能子程序調(diào)用dos 提供了許多系統(tǒng)功能子程序可由程序設(shè)計(jì)者調(diào)用,其中最基本的是鍵盤和顯示操作功能的調(diào)用,具體調(diào)用的方法可參閱教科書。1、 顯示緩沖區(qū)的字符串顯示緩沖區(qū)的字符串 1)實(shí)驗(yàn)程序:dsegsegmentstring dbwelcome to don
33、g hua university!,0dh,0ah,$dsegendsstack segment para stack stackdb256dup (?)stack endscsegsegmentmainprocfarassume cs: cseg, ds: dseg , ss: stackstart: pushdsmovax, 0pushaxmovah,9movdx,segstringmovds,dxmovdx,offset stringint21hretmainendpcsegendsendstart2) 實(shí)驗(yàn)步驟: (1)建立源程序文件。(2)用 masm 宏匯編程序和 link 連接程
34、序生成執(zhí)行程序。(3)運(yùn)行執(zhí)行程序,輸入不同字母,觀察結(jié)果。2、鍵盤輸入小寫字母,顯示器顯示大寫字母、鍵盤輸入小寫字母,顯示器顯示大寫字母 1)實(shí)驗(yàn)程序:csegsegmentassumecs:csegmain procfarstart: pushdsmov ax,0pushaxbegin: movah,1int21hcmpal,ajbstopcmpal,zjastopsubal,20hmovdl,almovah,2int21hjmp beginstop:retmainendpcsegendsendstart 2) 實(shí)驗(yàn)步驟: (1)建立源程序文件。(2)用 masm 宏匯編程序和 link
35、連接程序生成執(zhí)行程序。(3)運(yùn)行執(zhí)行程序,輸入不同字母,觀察結(jié)果。3、從鍵盤輸入一個(gè)二位十進(jìn)制的月份數(shù)(、從鍵盤輸入一個(gè)二位十進(jìn)制的月份數(shù)(01-12) ,顯示相應(yīng)月份的英文縮寫名,顯示相應(yīng)月份的英文縮寫名1)程序及其結(jié)構(gòu) 程序采用子程序的結(jié)構(gòu)形式,子程序有:將輸入的二位月份數(shù)轉(zhuǎn)換為二進(jìn)制數(shù)的子程序;從字符表中查找相應(yīng)的英文縮寫的子程序;將月份的英文字母顯示在屏幕上的子程序。%程序運(yùn)行存在問(wèn)題,只要第一個(gè)數(shù)字不為 0,則當(dāng)輸入的第二個(gè)數(shù)字為 1 或 2 時(shí)就會(huì)對(duì)應(yīng)輸出nov 和 dec程序如下:datasgsegmentparadatathree db3monin db3,4 dup(?)al
36、fmondb ?,$montabdbjan,feb,mar,apr,may,jundbjul,aug,sep,oct,nov,decdatasgendsstack segment para stack stacksta db 100 dup(?)stack endscodesgsegmentparacodeassumecs:codesg,ds:datasg,es:stackmainprocfarpushdssubax,axpushax movax,datasgmovds,axmoves,axcallinputcalllocatecalldisplayretmainendpinputprocne
37、ar; 鍵盤輸入并將 asc碼轉(zhuǎn)換二進(jìn)制數(shù)的子程序pushdxmovah,0ah; 鍵盤輸入月份數(shù)leadx,moninint21hmovah,monin+2 ; 將月份數(shù)字的 asc碼取入 ah 和 almoval,monin+3xorax,3030h; 將 asc碼轉(zhuǎn)換為 bcd 碼cmpah,00jzreturnsubah, ahaddal,10return:popdxretinputendplocateprocnear;將月份數(shù)字轉(zhuǎn)換為英文縮寫字母的子程序pushsipushdipushcxleasi,montabdecalmulthreeaddsi,axmovcx,03cldlead
38、i,alfmonrepmovsbpopcxpopdipopsiretlocateendpdisplayprocnear;屏幕顯示子程序pushdxleadx,alfmonmovah,09int21hpopdxretdisplayendpcodesgendsendmain(二)采用 dos 功能調(diào)用設(shè)計(jì)源程序,并運(yùn)行調(diào)試程序1、十進(jìn)制加法和結(jié)果顯示程序(自行設(shè)計(jì))、十進(jìn)制加法和結(jié)果顯示程序(自行設(shè)計(jì))1)程序設(shè)計(jì)要求將數(shù)據(jù)段 dseg 中的 addop1 定義的雙字變量的 4 位十進(jìn)制數(shù)和附加段 eseg 中的 addop2定義的雙字變量的 4 位十進(jìn)制數(shù)相加,和存放于數(shù)據(jù)段 dseg 中的 s
39、um 中,采用 dos 顯示功能調(diào)用將和顯示在屏幕上。dsegsegmentaddop1dd1234sumdd ?dsegendsesegsegmentaddop2dd2345esegendsstack segmentparastack stack db 100 dup(?)stack endscodesegmentassumeds:dseg,cs:code,es:esegstart: movax,dsegmovds,axmovax,esegmoves,axmovax,wordptraddop1addax,word ptraddop2movword ptr sum,axmovax,word p
40、tr addop1+2adcax,word ptr addop2+2movword ptr sum+2,axmovbx,word ptrsum+2call displaymovbx,word ptrsumcall displaymovah,4chint 21hdisplay proc nearmov cx,10000d ;divide by 10000call dec_divmov cx,1000d ;divide by 1000call dec_divmov cx,100d ;divide by 100call dec_divmov cx,10d ;divide by 10call dec_
41、divmov cx,1d ;divide by 1call dec_divret ;return from binidecdec_div proc near ; ;-從 位取出數(shù)字顯示mov ax,bx ;number low halfmov dx,0 ;zero out high halfdiv cx ;divide by cxmov bx,dx ;remainder into bxmov dl,al ;quotient into dl;print the contents of dl on screenadd dl,30h ;convert to asciimov ah,2h ; disp
42、lay functionint 21h ;call dosret ;return from dec_divdec_div endp;;-display endpcode endsend start2) 實(shí)驗(yàn)步驟: (1)建立源程序文件。(2)用 masm 宏匯編程序和 link 連接程序生成執(zhí)行程序。(3)運(yùn)行執(zhí)行程序,輸入不同的加數(shù)和被加數(shù),觀察結(jié)果。2、十進(jìn)制加法和算式顯示程序(自行設(shè)計(jì))、十進(jìn)制加法和算式顯示程序(自行設(shè)計(jì))1)程序設(shè)計(jì)要求在以上十進(jìn)制數(shù)加法要求的基礎(chǔ)上,將加法算式及和在顯示器上顯示。如 addop1 中存放 1234h,在 addop2 中存放 6789h,執(zhí)行程序后顯
43、示器上顯示:1234+6789=80232) 實(shí)驗(yàn)步驟: (1)建立源程序文件。dsegsegmentaddop1dd1234jiahao db +,$denghao db =,$ten dw 10sumdd ?dsegendsesegsegmentaddop2dd6789esegendsstack segmentparastack stack db 100 dup(?)stack endscodesegmentassumeds:dseg,cs:code,es:esegstart: movax,dsegmovds,axmovax,esegmoves,axmovax,wordptraddop1a
44、ddax,word ptraddop2movword ptr sum,axmovax,word ptr addop1+2adcax,word ptr addop2+2movword ptr sum+2,axmovbx,word ptraddop1+2calldisplaymovbx,word ptraddop1calldisplaymov ah,09hmov dx,offset jiahaoint 21hmovbx,word ptraddop2+2calldisplaymovbx,word ptraddop2calldisplaymov ah,09hmov dx,offset denghaoi
45、nt 21hmovbx,word ptrsum+2call displaymovbx,word ptrsumcall displaymovah,4chint 21hdisplay proc nearmov cx,10000d ;divide by 10000call dec_divmov cx,1000d ;divide by 1000call dec_divmov cx,100d ;divide by 100call dec_divmov cx,10d ;divide by 10call dec_divmov cx,1d ;divide by 1call dec_divret ;return
46、 from binidecdec_div proc near ; ;-從 位取出數(shù)字顯示mov ax,bx ;number low halfmov dx,0 ;zero out high halfdiv cx ;divide by cxmov bx,dx ;remainder into bxmov dl,al ;quotient into dl;print the contents of dl on screenadd dl,30h ;convert to asciimov ah,2h ; display functionint 21h ;call dosret ;return from de
47、c_divdec_div endp;;-display endpcode endsend start(2)用 masm 宏匯編程序和 link 連接程序生成執(zhí)行程序。(3)運(yùn)行執(zhí)行程序,輸入不同的加數(shù)和被加數(shù),觀察結(jié)果。3、鍵盤輸入加數(shù)和被加數(shù)進(jìn)行十進(jìn)制數(shù)加法,顯示結(jié)果程序(自行設(shè)計(jì))、鍵盤輸入加數(shù)和被加數(shù)進(jìn)行十進(jìn)制數(shù)加法,顯示結(jié)果程序(自行設(shè)計(jì))1)程序設(shè)計(jì)要求采用 dos 的鍵盤功能調(diào)用和顯示功能調(diào)用,將鍵盤輸入的 4 位十進(jìn)制被加數(shù)和 4 位加數(shù)相加,和存入有關(guān)內(nèi)存單元,并將算式及和顯示在顯示器上。要求采用子程序的設(shè)計(jì)方法設(shè)計(jì)程序,例如設(shè)計(jì)一個(gè)從鍵盤讀入輸入數(shù)據(jù)的子程序和將數(shù)據(jù)顯示的子程
48、序。dsegsegmentaddop dw2 dup(?)addop1dd?jiahao db +,$denghao db =,$ten dw 10sumdd?go db please input two number: $goo db the sum is: $tishi db the number you input is not right,must 10000,please input again! $dsegendsesegsegmentaddop2dd?esegendsstack segmentparastack stack db 100 dup(?)stack endscodes
49、egmentassumeds:dseg,cs:code,es:esegstart: movax,dsegmovds,axmovax,esegmoves,axts:mov si,0mov cx,2 ; 循環(huán) 5 次lea dx, go ; print gomov ah, 09int 21hagain: push cxcall inputcmp ax,10000jl rightpop cxcall crlfmov dx,offset tishimov ah,09hint 21hcall crlfjmp tsright: mov addopsi,ax;add sum,axinc siinc sipo
50、p cxloop againcall crlflea dx, goo ; print goo mov ah, 09int 21hmovsi,0movbx,addopsimovword ptr addop1,bxmovword ptr addop1+2,0inc siinc simovbx,addopsimovword ptr addop2,bxmovword ptr addop2+2,0push axmovax,wordptraddop1addax,word ptraddop2movword ptr sum,axmovax,word ptr addop1+2adcax,word ptr add
51、op2+2movword ptr sum+2,axpop ax;顯示算式movbx,word ptraddop1+2calldisplaymovbx,word ptraddop1calldisplaymov ah,09hmov dx,offset jiahaoint 21hmovbx,word ptraddop2+2calldisplaymovbx,word ptraddop2calldisplaymov ah,09hmov dx,offset denghaoint 21hmovbx,word ptrsum+2call displaymovbx,word ptrsumcall displaym
52、ovah,4chint 21h;- 跳到下一行 crlf proc nearmov dl,0ah ;換行mov ah,02hint 21hmov dl,0dh ;從頭開(kāi)始mov ah,02h int 21hretcrlf endp;-接受數(shù)字函數(shù)input proc near mov ax,0push axagain1:mov ah,01h ;鍵盤輸入 int 21hcmp al,30h ;當(dāng)輸入不是數(shù)字的時(shí)候(如空格) ,跳出,一個(gè)數(shù)字輸入完成, jl exitcmp al,39hjg exitsub al,30h ;將 ascii 碼值轉(zhuǎn)化為數(shù)值 mov bl,almov bh,0pop
53、axcwdimul ten ;將已有的數(shù)乘 10,加上新輸入的數(shù) add ax,bxpush axjmp again1exit:pop axretinput endpdisplay proc nearmov cx,10000d ;divide by 10000call dec_divmov cx,1000d ;divide by 1000call dec_divmov cx,100d ;divide by 100call dec_divmov cx,10d ;divide by 10call dec_divmov cx,1d ;divide by 1call dec_divret ;return from binidecdec_div proc near ; ;-從 位取出數(shù)字顯示mov ax,bx ;number low halfmov dx,0 ;zero out high halfdiv cx ;divide by cxmov bx,dx
溫馨提示
- 1. 本站所有資源如無(wú)特殊說(shuō)明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請(qǐng)下載最新的WinRAR軟件解壓。
- 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請(qǐng)聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
- 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁(yè)內(nèi)容里面會(huì)有圖紙預(yù)覽,若沒(méi)有圖紙預(yù)覽就沒(méi)有圖紙。
- 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
- 5. 人人文庫(kù)網(wǎng)僅提供信息存儲(chǔ)空間,僅對(duì)用戶上傳內(nèi)容的表現(xiàn)方式做保護(hù)處理,對(duì)用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對(duì)任何下載內(nèi)容負(fù)責(zé)。
- 6. 下載文件中如有侵權(quán)或不適當(dāng)內(nèi)容,請(qǐng)與我們聯(lián)系,我們立即糾正。
- 7. 本站不保證下載資源的準(zhǔn)確性、安全性和完整性, 同時(shí)也不承擔(dān)用戶因使用這些下載資源對(duì)自己和他人造成任何形式的傷害或損失。
最新文檔
- 2025 年高空作業(yè)車租賃合同
- 供用熱力服務(wù)合同樣本
- 2025年微晶氧化鋁陶瓷耐磨材料項(xiàng)目發(fā)展計(jì)劃
- 《2025建筑設(shè)備租賃合同混凝土攪拌未簽訂》
- 買方回復(fù)銷售合同標(biāo)準(zhǔn)文本
- 二零二五版正規(guī)加盟合同書范例
- 佛塔修建合同標(biāo)準(zhǔn)文本
- 鄉(xiāng)村振興基金合同樣本
- 退股協(xié)議書二零二五年
- 二零二五版租房門面房合同范例
- TRIZ理論――創(chuàng)新方法課件
- CORN術(shù)中獲得性壓力性損傷風(fēng)險(xiǎn)評(píng)估量表評(píng)定細(xì)則解讀
- 中國(guó)大唐集團(tuán)公司以熱率為核心能耗管理指導(dǎo)意見(jiàn)
- 南方科技大學(xué)自述信800字范文六篇
- (1.3)-災(zāi)害護(hù)理學(xué)第二章災(zāi)害應(yīng)急體系
- 客戶ABC分類管理
- GB/T 5162-2021金屬粉末振實(shí)密度的測(cè)定
- GB/T 12755-2008建筑用壓型鋼板
- GB 8372-2001牙膏
- GA/T 882-2014訊問(wèn)同步錄音錄像系統(tǒng)技術(shù)要求
- 喬木、灌木栽植方案
評(píng)論
0/150
提交評(píng)論