下載本文檔
版權(quán)說明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請進(jìn)行舉報(bào)或認(rèn)領(lǐng)
文檔簡介
基于FPGA的四位加法器設(shè)計(jì)4位加法器設(shè)計(jì)。取開發(fā)板上的4位按鍵作為4位被加數(shù),取4位撥碼開關(guān)作為4位被加數(shù),其中8個(gè)led燈取5位作為輸出結(jié)果,led0-led3作為相加的結(jié)果,led4作為進(jìn)位(LED亮表示低電平0,LED滅表示高電平1,)數(shù)碼管以十進(jìn)制數(shù)顯示被加數(shù),加數(shù)和相加的結(jié)果。包括vhdl文件、和vwf文件。利用兩組按鍵作為兩個(gè)加數(shù)輸入,用數(shù)碼管做加數(shù)顯示和結(jié)果顯示,開發(fā)板上只有4個(gè)數(shù)碼管,但加數(shù)都是兩位的,所以只能做輪流顯示,用“=”鍵做顯示切換。程序如下:libraryieee;useieee.std_logic_unsigned.all;useieee.std_logic_1164.all;useieee.std_logic_arith.all;entityadder_4isport( clk:instd_logic;--時(shí)鐘輸入,應(yīng)該輸入分頻后的clk enter:instd_logic;--顯示切換,可以理解位“=”鍵 clear:instd_logic;--清除鍵,預(yù)留接口可擴(kuò)展 key_num1:instd_logic_vector(3downto0);--加數(shù)1 key_num2:instd_logic_vector(3downto0);--加數(shù)2 duan:outstd_logic_vector(6downto0);--輸出結(jié)果 wei:outstd_logic_vector(3downto0); led5:outstd_logic_vector(4downto0)--led結(jié)果顯示 );endentity;architecturefunofadder_4issignalnum1,num2:std_logic_vector(3downto0);--中間信號定義signaladd_num1:integerrange15downto0;signaladd_num2:integerrange15downto0;signaladd_sum:integerrange30downto0;signalten_data:integerrange9downto0;signaladd_num1ge,add_num1shi,add_num2ge,add_num2shi,sumge,sumshi:integerrange9downto0;signalwei_data:integerrange0to3;begin duan<="1000000"whenten_data=0else--顯示部分,數(shù)碼管共陽 "1111001"whenten_data=1else "0100100"whenten_data=2else "0110000"whenten_data=3else "0111001"whenten_data=4else "0010010"whenten_data=5else "0000010"whenten_data=6else "1111000"whenten_data=7else "0000000"whenten_data=8else "0010000"; process(clk,clear,enter,key_num1,key_num2,num1,num2,add_num1ge,add_num1shi,add_num2ge,add_num2shi,sumge,sumshi) begin ifclear='0'then add_num1<=0; add_num2<=0; add_sum<=0; else --ifkey_num1/="1111"orkey_num2/="1111"then num1<=notkey_num1; num2<=notkey_num2;--加數(shù)處理,二進(jìn)制轉(zhuǎn)十進(jìn)制。 add_num1<=conv_integer(num1(0))*1+conv_integer(num1(1))*2+conv_integer(num1(2))*4+conv_integer(num1(3))*8;add_num1ge<=(add_num1rem10);--個(gè)位,十位分離 add_num1shi<=((add_num1-add_num1ge)/10); add_num2<=conv_integer(num2(0))*1+conv_integer(num2(1))*2+conv_integer(num2(2))*4+conv_integer(num2(3))*8; add_num2ge<=(add_num2rem10); add_num2shi<=((add_num2-add_num2ge)/10); add_sum<=add_num1+add_num2; sumge<=(add_sumrem10); sumshi<=((add_sum-sumge)/10); led5<=('0'&num1)+('0'&num2); --endif; endif; ifclk'eventandclk='1'then wei_data<=wei_data+1; endif; ifenter='1'then casewei_datais when0=>ten_data<=add_num1ge;wei<="0001"; when1=>ten_data<=add_num1shi;wei<="0010"; when2=>ten_data<=add_num2ge;wei<="0100"; whenothers=>ten_data<=add_num2shi;wei<="1000"; endcase; else casewei_datais when0=>ten_data<=sumge;wei<="0001"; when1=>ten_data<=sumshi;wei<="0010"; when2=>ten_data<=0;wei<="0100"; whenothers=>ten_data<=0;wei<="1000"; endcase; endif; endprocess;endarchitecture;此程序?yàn)?,在調(diào)試兩周之后的沒有問題的,學(xué)習(xí)班用的CYCLONE_IV_E:以下為50MHZ分頻程序:libraryieee;useieee.std_logic_unsigned.all;useieee.std_logic_1164.all;useieee.std_logic_arith.all;entitydefrequanceisport( in_5khz:instd_logic; out_1hz:outstd_logic );endentitydefrequance;architecturefunofdefrequanceissignalnum:integerrange0to50000;beginprocess(in_5khz,num)beginifin_5khz'eventandin_5khz='1'then num<=num+1; ifnum<25000then-- num<=0; out_1hz<='1'; elsifnum>25000andnum<50000then out_1hz<='0'; endif;endif;endpr
溫馨提示
- 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)確性、安全性和完整性, 同時(shí)也不承擔(dān)用戶因使用這些下載資源對自己和他人造成任何形式的傷害或損失。
最新文檔
- 學(xué)生實(shí)習(xí)期間家長保證書
- 版汽運(yùn)運(yùn)輸合同
- 生鮮食品采購合同
- 煤炭購銷合同范本模板
- 政府采購合同履行
- 招標(biāo)談判文件的編輯技巧
- 商場店鋪接盤合同模板
- 房屋買賣合同補(bǔ)充協(xié)議范例
- 簡單易懂的投資理財(cái)合同
- 業(yè)績分享合同樣本
- 湖南涉外經(jīng)濟(jì)學(xué)院論文答辯高校通用ppt模版
- 南極磷蝦油100問專業(yè)版
- 機(jī)械課程設(shè)計(jì)說明書
- 北師大2019新版高中英語選擇性必修二UNIT 6 THE MEDIA單詞表
- 冰蓄冷系統(tǒng)技術(shù)方案及經(jīng)濟(jì)性分析
- 歌曲簡譜國家成龍
- 設(shè)備安裝工程監(jiān)理規(guī)劃
- 防止機(jī)組非計(jì)劃停運(yùn)措施(鍋爐專業(yè))
- 素材的獲取與處理方法
- 如何同步同時(shí)接收老公老婆微信的實(shí)用教程
- 場調(diào)查報(bào)告封面
評論
0/150
提交評論