版權(quán)說明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請進行舉報或認領
文檔簡介
1、華 北 科 技 學 院課程設計說明書課程名稱: 匯編語言 班級: 計算機b08-1 姓名: 胡詩招 學號: 200807014102 設計題目: 個人檔案管理文件 設計時間: 2010年6月23號 _至 2010年7月2號 _指導教師:_ 李冬艷_ _評 語:_評閱成績: 評閱教師: 1、 課程設計目的進行程序設計方法和技能的基本訓練,鞏固在課堂上學到的有關程序設計的基本知識和基本方法,通過實際動手能力的培養(yǎng),進一步熟悉匯編語言的結(jié)構(gòu)和使用方法,達到能獨立閱讀、編制和調(diào)試一定規(guī)模的匯編語言程序的水平。2、 課程設計要求 1要求編寫并調(diào)試通過一個小型軟件,實現(xiàn)對軟件或硬件的操作。2遵循模塊化、結(jié)
2、構(gòu)化的程序設計方法。3.要求程序必須正確。4.程序簡明易懂,多運用輸入輸出提示,出錯信息及必要的注釋。5.要求程序結(jié)構(gòu)合理,語句使用得當。6.適當追求編程技巧和程序運行效率。三、課程設計題目: 個人檔案管理文件四、課題分析 程序開始時,先建立判斷是否存在文件,如果不存在,就創(chuàng)立文件。然后隨便輸入i,l,q中任意一個字母,然后跳到相應的子程序,輸入i詩,跳到輸入的子程序,輸入相應的數(shù)據(jù),保存到文件里。當輸入l時,保存在文件里的數(shù)據(jù)就會顯示,每個學生的信息顯示一行。當輸入q時,直接關閉文件,程序結(jié)束五、流程圖: 開始 先建立一個文件 輸入i,l,q中的 一個字母 輸入i 輸入l 輸入學生的名字,年
3、齡 性別,身高,體重,并把 打開文件 數(shù)據(jù)依次存到文件 顯示學生名字,年領 ,性別,身高,體重 輸入q 關閉文件 結(jié)束六、程序源代碼:vardata segment filename db 'ffff.txt',00 ;定義文件vardata endscondata segment names db 10 dup(?) ;名字定義 age db ?,? ;年齡定義 sex db 2 dup(?) ;性別定義 height db 3 dup(?) ;身高定義 weight db 3 dup(?) ;體重定義 mess_n db 0dh,0ah,' name:$'
4、mess_a db 0dh,0ah,' age:$' mess_s db 0dh,0ah,' sex:$' mess_h db 0dh,0ah,' height:$' mess_w db 0dh,0ah,' weight:$' s4 db 0dh,0ah db '*',0dh,0ah db '* -1: print list l- *',0dh,0ah db '* -2: insert new ele i- *',0dh,0ah db '* -3: quit q- *'
5、;,0dh,0ah db '*',0dh,0ah db 0dh,0ah db '$' s1 db ' name age sex height weight',13,10,'$' s2 db ' $' s3 db ' $'condata endscode segment assume cs:code,ds:vardata,es:condatastart: mov ax, condata mov es, ax mov ax, vardata mov ds, ax push ds;-print comma
6、nd hint- mov ax, es mov ds, ax mov dx, offset s4 mov ah, 9h int 21h pop ds;-intepret command-cmp_l: mov ah, 01h int 21h cmp al, 'l' jnz cmp_i call list_all jmp startcmp_i: cmp al, 'i' jnz cmp_q call insert jmp startcmp_q: cmp al, 'q' jnz closef exit: mov ax, 4c00h int 21h;-打開
7、和創(chuàng)建文件list_all proc near call open_create ;open or create file push ds mov ax, es ;es里放的是文件 mov ds, ax lea dx, s1 mov ah, 9 int 21h mov dl, 0ah mov ah,2 int 21hloop_rd: mov ah, 3fh ;read record from file to memory 讀取文件 mov dx, offset names mov cx, 20 mov bx, si int 21h cmp ax, 0 je read_finish ;read
8、to the end,then finish相等是結(jié)束 ;-名字 lea dx, s3 mov ah, 9 int 21h mov bx, 0go_on: mov dl, namesbx mov ah, 2h int 21h inc bx cmp bx, 10 jl go_on;-年齡 lea dx,s2 mov ah,9 int 21h mov dl, age0 mov ah, 2 int 21h mov dl, age1 mov ah, 2 int 21h;-性別 lea dx,s2 mov ah,9 int 21h mov bx, 0l1: mov dl, sexbx mov ah, 2
9、h int 21h inc bx cmp bx, 2 jl l1;-身高 lea dx,s2 mov ah,9 int 21h mov bx, 0l2: mov dl, heightbx mov ah, 2h int 21h inc bx cmp bx, 3 jl l2;-體重 lea dx,s2 mov ah,9 int 21h mov bx, 0l3: mov dl, weightbx mov ah, 2h int 21h inc bx cmp bx, 3 jl l3 mov dl, 0dh mov ah,2 int 21h mov dl, 0ah mov ah,2 int 21h jmp
10、 loop_rd ; a record finished ,then to read the next接著顯示read_finish: call closef pop ds retlist_all endp;-輸入子程序insert proc near call open_create ; open of create file push ds mov ax, es mov ds, ax;-名字輸入 mov dx, offset mess_n mov ah, 9h int 21h mov bx, 0init: ;memory initialize初始化 mov namesbx,0 inc bx
11、 cmp bx, 20 jl init mov bx, 0lp: ;從鍵盤接受數(shù)據(jù) mov ah, 1 int 21h cmp al, 0dh jz inext cmp al, 0ah jz inext mov namesbx,al inc bx cmp bx, 10 jl lp ;-年齡 的輸入inext: lea dx,s2 mov ah,9 int 21h mov dx, offset mess_a mov ah, 9h int 21h mov bx, 0lp2: mov ah, 1h int 21h cmp al, 0dh jz inext1 cmp al, 0ah jz inext1
12、 mov agebx,al inc bx cmp bx, 1 jle lp2 ;-性別輸入 inext1: lea dx,s2 mov ah,9 int 21h mov dx, offset mess_s mov ah, 9h int 21h mov bx, 0 lp3: mov ah, 1h int 21h cmp al, 0dh jz inext2 cmp al, 0ah jz inext2 mov sexbx,al inc bx cmp bx,2 jle lp3 ;-身高輸入inext2: lea dx,s2 mov ah,9 int 21h mov dx, offset mess_h
13、mov ah, 9h int 21h mov bx, 0lp4: mov ah, 1h int 21h cmp al, 0dh jz inext3 cmp al, 0ah jz inext3 mov heightbx,al inc bx cmp bx,3 jle lp4 ;-體重輸入inext3: lea dx,s2 mov ah,9 int 21h mov dx, offset mess_w mov ah, 9h int 21h mov bx, 0lp5: mov ah, 1h int 21h cmp al, 0dh jz iexit cmp al, 0ah jz iexit mov wei
14、ghtbx,al inc bx cmp bx,3 jle lp5 iexit: ;move the file pointer to the end of file mov ah, 42h ;移動文件 mov al, 2 mov bx, si mov cx, 0 mov dx, 0 int 21h mov ah, 40h ;write the record to file寫入文件 mov bx, si mov cx, 20 mov dx, offset names int 21hback: call closef pop ds retinsert endp;-open_create proc n
15、ear push ds mov ax, seg filename ;filename文件d的段地址值送給ax mov ds, ax mov ah, 3dh ;open the file mov dx, offset filename mov al, 2h ;顯示文件 int 21h jnc ok ;大于等于時跳轉(zhuǎn) mov ah, 3ch ;如果不存在文件,就創(chuàng)建文件 mov dx, offset filename mov cx, 00 int 21hok: mov si, ax pop ds retopen_create endpclosef proc near mov bx, si mov ah, 3eh ;關閉文件 int 21h retclosef endp code ends end start七、結(jié)果顯示8、 感想、收獲及體會 課程設計從開始找資料到課設結(jié)束,在這短時間里,課設給我的收獲很大,雖然我的題目不是很難,比其他同學的簡單,程序
溫馨提示
- 1. 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請下載最新的WinRAR軟件解壓。
- 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
- 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁內(nèi)容里面會有圖紙預覽,若沒有圖紙預覽就沒有圖紙。
- 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
- 5. 人人文庫網(wǎng)僅提供信息存儲空間,僅對用戶上傳內(nèi)容的表現(xiàn)方式做保護處理,對用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對任何下載內(nèi)容負責。
- 6. 下載文件中如有侵權(quán)或不適當內(nèi)容,請與我們聯(lián)系,我們立即糾正。
- 7. 本站不保證下載資源的準確性、安全性和完整性, 同時也不承擔用戶因使用這些下載資源對自己和他人造成任何形式的傷害或損失。
最新文檔
- 江西省九江市田家炳實驗中學2024-2025學年高一上學期12月月考歷史試題(含答案)
- 河南省商丘市柘城縣2024-2025學年七年級上學期期末地理試卷(含答案)
- 2024獵頭委托合同范本
- 2025年度出口運輸貨物跟蹤與查詢服務合同3篇
- 2024軟件測試與軟件生命周期管理合同3篇
- 2024版建設行業(yè)勞務分包協(xié)議書版B版
- 福建省南平市將口鎮(zhèn)中學2022年高一數(shù)學文上學期期末試卷含解析
- 2024高端裝備制造技術引進與培訓合同
- 2024版城市廣告牌施工協(xié)議細則版B版
- 2024民政局離婚協(xié)議書參考樣板及法律依據(jù)6篇
- 2025年湖南出版中南傳媒招聘筆試參考題庫含答案解析
- 2025年度商用廚房油煙機安裝與維護服務合同范本3篇
- 2024年03月恒豐銀行2024年春季招考畢業(yè)生筆試歷年參考題庫附帶答案詳解
- 網(wǎng)絡安全系統(tǒng)運維方案
- ISO 56001-2024《創(chuàng)新管理體系-要求》專業(yè)解讀與應用實踐指導材料之14:“6策劃-6.3變更的策劃”(雷澤佳編制-2025B0)
- 2024年特厚板行業(yè)現(xiàn)狀分析:中國特厚板市場占總銷售量45.01%
- 2025年中國地質(zhì)調(diào)查局烏魯木齊自然資源綜合調(diào)查中心招聘19人歷年管理單位筆試遴選500模擬題附帶答案詳解
- 中國兒童重癥監(jiān)護病房鎮(zhèn)痛和鎮(zhèn)靜治療專家共識2024解讀
- 音樂老師年度總結(jié)5篇
- 2024版商標許可使用合同與商標授權(quán)協(xié)議3篇
- 學生學情分析報告范文
評論
0/150
提交評論