版權(quán)說明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請進(jìn)行舉報(bào)或認(rèn)領(lǐng)
文檔簡介
PAGEPAGE1 西華大學(xué)實(shí)驗(yàn)報(bào)告第組.第組實(shí)驗(yàn)報(bào)告(計(jì)算機(jī)類)開課學(xué)院及實(shí)驗(yàn)室:機(jī)械學(xué)院工程實(shí)驗(yàn)中心實(shí)驗(yàn)時間:學(xué)生姓名學(xué)號成績學(xué)生所在學(xué)院年級/專業(yè)/班課程名稱EDA技術(shù)(機(jī)械)課程代碼實(shí)驗(yàn)項(xiàng)目名稱出租車計(jì)費(fèi)器項(xiàng)目代碼十一指導(dǎo)教師項(xiàng)目學(xué)分一、實(shí)驗(yàn)?zāi)康模?)學(xué)習(xí)并掌握Quartus
II
開發(fā)系統(tǒng)的基本操作。(2)掌握用Quartus
II進(jìn)行文本輸入法進(jìn)行電路設(shè)計(jì)、編譯和仿真方法。(3)掌握CPLD/FPGA的開發(fā)流程。(4)掌握EDA實(shí)驗(yàn)開發(fā)系統(tǒng)的使用。(5)設(shè)計(jì)一個出租車計(jì)費(fèi)器。二、內(nèi)容與設(shè)計(jì)思想設(shè)計(jì)任務(wù)如下:(1)實(shí)現(xiàn)計(jì)費(fèi)功能,計(jì)費(fèi)標(biāo)準(zhǔn)為:暗行駛里程計(jì)費(fèi),起步價(jià)為7.00元,并在車行3km后暗2.20元/km計(jì)費(fèi),當(dāng)計(jì)費(fèi)器達(dá)到或超過20元時,每千米加收50%的車費(fèi),車停止不計(jì)費(fèi)。(2)現(xiàn)場模擬功能:能模擬汽車啟動、停止、暫停以及加速等狀態(tài)。(3)設(shè)計(jì)動態(tài)掃描電路,將車費(fèi)和路程顯示出來,各有兩位小數(shù)。三、使用環(huán)境Pc計(jì)算機(jī),quartusⅡ軟件環(huán)境核心代碼及調(diào)試過程出租車計(jì)費(fèi)器JIFEI模塊libraryieee;useieee.std_logic_1164.all;useieee.std_logic_unsigned.all;entityjifeiis port(clk,start,stop,pause,js:instd_logic; q:outstd_logic_vector(3downto0); chefei,luc:outintegerrange0to8000 );endjifei;architecturearc_jifeiofjifeiisbegin process(clk,start,stop,pause,js) variablea,b:std_logic; variableaa:integerrange0to100; variablechf,lc:integerrange0to8000; variablenum:integerrange0to9; begin ifclk'eventandclk='1'then if(stop='0')then chf:=0; num:=0; b:='1'; aa:=0; lc:=0; elsif(start='0')then b:='0'; chf:=700; lc:=0; elsif(start='1'andjs='1'andpause='1')then if(b='0')then num:=num+1; endif; if(num=9)then lc:=lc+5; num:=0; aa:=aa+5; endif; elsif(start='1'andjs='0'andpause='1')then lc:=lc+1; aa:=aa+1; endif; if(aa>=100)then a:='1'; aa:=0; else a:='0'; endif; if(lc<300)then null; elsif(chf<2000anda='1')then chf:=chf+220; elsif(chf>=2000anda='1')then chf:=chf+330; endif; endif; chefei<=chf; luc<=lc; endprocess;endarc_jifei;X模塊,將車費(fèi)和路程轉(zhuǎn)化成4位十進(jìn)制libraryieee;useieee.std_logic_1164.all;useieee.std_logic_unsigned.all;entityxis port(daclk:instd_logic; ascore,bscore:inintegerrange0to8000; age,ashi,abai,aqian,bge,bshi,bbai,bqian:outstd_logic_vector(3downto0) );endx;architecturearc_xofxisbegin p1:process(daclk,ascore)variablecomb1:integerrange0to8000; variablecomb1a,comb1b,comb1c,comb1d:std_logic_vector(3downto0); begin ifdaclk'eventanddaclk='1'then ifcomb1<ascorethen ifcomb1a=9andcomb1b=9andcomb1c=9then comb1a:="0000"; comb1b:="0000"; comb1c:="0000"; comb1d:=comb1d+1; comb1:=comb1+1; elsifcomb1a=9andcomb1b=9then comb1a:="0000"; comb1b:="0000"; comb1:=comb1+1; comb1c:=comb1c+1; elsifcomb1a=9then comb1a:="0000"; comb1b:=comb1b+1; comb1:=comb1+1; else comb1a:=comb1a+1; comb1:=comb1+1; endif; else ashi<=comb1b; age<=comb1a; abai<=comb1c; aqian<=comb1d; comb1:=0; comb1a:="0000"; comb1b:="0000"; comb1c:="0000"; comb1d:="0000"; endif; endif; endprocessp1; p2:process(daclk,bscore)variablecomb2:integerrange0to8000; variablecomb2a,comb2b,comb2c,comb2d:std_logic_vector(3downto0); begin ifdaclk'eventanddaclk='1'then ifcomb2<bscorethen ifcomb2a=9andcomb2b=9andcomb2c=9then comb2a:="0000"; comb2b:="0000"; comb2c:="0000"; comb2d:=comb2d+1; comb2:=comb2+1; elsifcomb2a=9andcomb2b=9then comb2a:="0000"; comb2b:="0000"; comb2:=comb2+1; comb2c:=comb2c+1; elsifcomb2a=9then comb2a:="0000"; comb2b:=comb2b+1; comb2:=comb2+1; else comb2a:=comb2a+1; comb2:=comb2+1; endif; else bshi<=comb2b; bge<=comb2a; bbai<=comb2c; bqian<=comb2d; comb2:=0; comb2a:="0000"; comb2b:="0000"; comb2c:="0000"; comb2d:="0000"; endif; endif; endprocessp2; endarc_x;XXX1模塊,八選一將車費(fèi)和路程顯示出來libraryieee;useieee.std_logic_1164.all;useieee.std_logic_unsigned.all;entityxxx1is port( c:instd_logic_vector(2downto0); a1,a2,a3,a4,b1,b2,b3,b4:instd_logic_vector(3downto0); dp:outstd_logic; d:outstd_logic_vector(3downto0) );endxxx1;architecturearc_xxx1ofxxx1isbegin process(c,a1,a2,a3,a4,b1,b2,b3,b4) variablecomb:std_logic_vector(2downto0); begin comb:=c; casecombis when"000"=>d<=a1; dp<='0'; when"001"=>d<=a2; dp<='0'; when"010"=>d<=a3; dp<='1'; when"011"=>d<=a4; dp<='0'; when"100"=>d<=b1; dp<='0'; when"101"=>d<=b2; dp<='0'; when"110"=>d<=b3; dp<='1'; when"111"=>d<=b4; dp<='0'; whenothers=>null; endcase; endprocess;endarc_xxx1;SE模塊libraryieee;useieee.std_logic_1164.all;useieee.std_logic_unsigned.all;entityseis port(clk:instd_logic; a:outstd_logic_vector(2downto0) );endse;architecturearc_seofseisbegin process(clk) variableb:std_logic_vector(2downto0); begin ifclk'eventandclk='1'then ifb="111"then b:="000"; else b:=b+1; endif; endif; a<=b; endprocess;endarc_se;DI譯碼模塊libraryieee;useieee.std_logic_1164.all;entitydiis port(d:instd_logic_vector(3downto0); q:outstd_logic_vector(6downto0) );enddi;architecturedi_arcofdiisbegin process(d) begin casedis when"0000"=>q<="0111111"; when"0001"=>q<="0000110"; when
溫馨提示
- 1. 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請下載最新的WinRAR軟件解壓。
- 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
- 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁內(nèi)容里面會有圖紙預(yù)覽,若沒有圖紙預(yù)覽就沒有圖紙。
- 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
- 5. 人人文庫網(wǎng)僅提供信息存儲空間,僅對用戶上傳內(nèi)容的表現(xiàn)方式做保護(hù)處理,對用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對任何下載內(nèi)容負(fù)責(zé)。
- 6. 下載文件中如有侵權(quán)或不適當(dāng)內(nèi)容,請與我們聯(lián)系,我們立即糾正。
- 7. 本站不保證下載資源的準(zhǔn)確性、安全性和完整性, 同時也不承擔(dān)用戶因使用這些下載資源對自己和他人造成任何形式的傷害或損失。
最新文檔
- 無人機(jī)精準(zhǔn)農(nóng)業(yè)-洞察分析
- 虛擬現(xiàn)實(shí)技術(shù)在言語康復(fù)中的應(yīng)用研究-洞察分析
- 舞臺視覺特效-第3篇-洞察分析
- 網(wǎng)絡(luò)化維修服務(wù)模式-洞察分析
- 網(wǎng)絡(luò)文學(xué)與傳統(tǒng)文學(xué)的敘事比較-洞察分析
- 異常安全風(fēng)險(xiǎn)評估-洞察分析
- 向廠長提出調(diào)換工作崗位的申請書范文(7篇)
- 藝術(shù)空間激活社區(qū)活力-洞察分析
- 微納光學(xué)器件在量子計(jì)算中的應(yīng)用-洞察分析
- 水熱處理對茶葉品質(zhì)影響-洞察分析
- 四川省簡陽市禾豐鎮(zhèn)初級中學(xué)-2025年蛇年寒假特色作業(yè)【課件】
- 滬教版(上海)七年級上學(xué)期全部章節(jié)知識點(diǎn)總結(jié)
- GB/T 45004-2024鋼鐵行業(yè)低碳企業(yè)評價(jià)指南
- 2024年全國統(tǒng)一電力市場建設(shè)情況及展望報(bào)告-中國電力企業(yè)聯(lián)合會(潘躍龍)
- 2024年招商部門工作計(jì)劃(3篇)
- DB21T 2748-2017 拉氏鱥池塘養(yǎng)殖技術(shù)規(guī)范
- 運(yùn)河鎮(zhèn)江段航道疏浚工程環(huán)評資料環(huán)境影響
- 第一單元知識提綱(填空版) -2024-2025學(xué)年統(tǒng)編版道德與法治七年級 上冊
- 2024學(xué)年第一學(xué)期杭州市高三年級教學(xué)質(zhì)量檢測試題(杭州一模)含答案
- 生理學(xué)課件全套課件
- 《幸福終點(diǎn)站》電影賞析
評論
0/150
提交評論