FPGA程序乘法器

FPGA程序乘法器

ID:37918872

大?。?2.50 KB

頁(yè)數(shù):4頁(yè)

時(shí)間:2019-06-02

FPGA程序乘法器_第1頁(yè)
FPGA程序乘法器_第2頁(yè)
FPGA程序乘法器_第3頁(yè)
FPGA程序乘法器_第4頁(yè)
資源描述:

《FPGA程序乘法器》由會(huì)員上傳分享,免費(fèi)在線閱讀,更多相關(guān)內(nèi)容在教育資源-天天文庫(kù)。

1、乘法器:byleasualmodulemui44(a,b,rst,out,bai,shi,ge);inputrst;input[3:0]a,b;outputout,bai,shi,ge;reg[3:0]bai,shi,ge;wire[7:0]out1,out2,out3,out4;reg[7:0]out;always@(*)if(!rst)beginout=0;bai=0;shi=0;ge=0;endelsebeginout=out1+out2+out3+out4;bai=out/100;shi=out%100/10;ge=out%10;endassignout1=(b[0]==1)

2、?a:0;assignout2=(b[1]==1)?(a<<1):0;assignout3=(b[2]==1)?(a<<2):0;assignout4=(b[3]==1)?(a<<3):0;endmodule奇數(shù)分頻:byleasualmodulejishufenp(rst,clk,clkout);parameterN=3;//計(jì)數(shù)器的位數(shù)N的最大計(jì)數(shù)值要大于或等于MparameterM=7;//要分頻的模,取奇數(shù)inputrst;inputclk;outputclkout;regtempp,tempn;reg[N-1:0]count;always@(negedgerstorpose

3、dgeclk)if(!rst)begincount<=0;tempp<=0;endelsebegincount<=count+1;if(count==M/2)tempp<=1;elseif(count==M-1)begintempp<=0;count<=0;endendalways@(negedgerstornegedgeclk)if(!rst)tempn<=0;elsetempn<=tempp;assignclkout=tempp

4、tempn;endmodule狀態(tài)機(jī):/**************************************gongneng:jiancexul

5、ie1011chengxubyleasual2010.11.29**************************************/moduleztj2(a,rst,clk,q);inputclk,a,rst;outputq;regq;reg[7:0]cur_state;parameters1=8'b0000_0001,s2=8'b0000_0010,s3=8'b0000_0100,s4=8'b0000_1000,s5=8'b0001_0000,s6=8'b0010_0000,s7=8'b0100_0000,s8=8'b1000_0000;always@(posedgecl

6、kornegedgerst)if(~rst)begincur_state<=s1;endelsecase(cur_state)s1:begincur_state<=((a==1)?s2:s1);q<=0;ends2:begincur_state<=((a==0)?s3:s2);q<=0;ends3:begincur_state<=((a==1)?s4:s1);q<=0;ends4:begincur_state<=((a==1)?s5:s3);q<=0;ends5:begincur_state<=((a==0)?s6:s2);q<=0;ends6:begincur_state<=((a

7、==1)?s7:s1);q<=0;ends7:begincur_state<=((a==0)?s8:s5);q<=0;ends8:if(a==1)begincur_state<=s1;q<=1;endelsebegincur_state<=s1;q<=0;enddefault:begincur_state<=s1;q<=0;endendcaseendmodule

當(dāng)前文檔最多預(yù)覽五頁(yè),下載文檔查看全文

此文檔下載收益歸作者所有

當(dāng)前文檔最多預(yù)覽五頁(yè),下載文檔查看全文
溫馨提示:
1. 部分包含數(shù)學(xué)公式或PPT動(dòng)畫(huà)的文件,查看預(yù)覽時(shí)可能會(huì)顯示錯(cuò)亂或異常,文件下載后無(wú)此問(wèn)題,請(qǐng)放心下載。
2. 本文檔由用戶上傳,版權(quán)歸屬用戶,天天文庫(kù)負(fù)責(zé)整理代發(fā)布。如果您對(duì)本文檔版權(quán)有爭(zhēng)議請(qǐng)及時(shí)聯(lián)系客服。
3. 下載前請(qǐng)仔細(xì)閱讀文檔內(nèi)容,確認(rèn)文檔內(nèi)容符合您的需求后進(jìn)行下載,若出現(xiàn)內(nèi)容與標(biāo)題不符可向本站投訴處理。
4. 下載文檔時(shí)可能由于網(wǎng)絡(luò)波動(dòng)等原因無(wú)法下載或下載錯(cuò)誤,付費(fèi)完成后未能成功下載的用戶請(qǐng)聯(lián)系客服處理。