veriloghdl循環(huán)語(yǔ)法

veriloghdl循環(huán)語(yǔ)法

ID:16295043

大小:30.50 KB

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

時(shí)間:2018-08-09

veriloghdl循環(huán)語(yǔ)法_第1頁(yè)
veriloghdl循環(huán)語(yǔ)法_第2頁(yè)
veriloghdl循環(huán)語(yǔ)法_第3頁(yè)
veriloghdl循環(huán)語(yǔ)法_第4頁(yè)
資源描述:

《veriloghdl循環(huán)語(yǔ)法》由會(huì)員上傳分享,免費(fèi)在線閱讀,更多相關(guān)內(nèi)容在行業(yè)資料-天天文庫(kù)。

1、WhileLoop//Illustration1:Incrementcountfrom0to127.Exitatcount128.//Displaythecountvariable.integercount;initialbegincount=0;while(count<128)//Executelooptillcountis127.//exitatcount128begin$display("Count=%d",count);count=count+1;endend//Illustration2:Findthefirs

2、tbitwithavalue1inflag(vectorvariable)'defineTRUE1'b1';'defineFALSE1'b0;reg[15:0]flag;integeri;//integertokeepcountregcontinue;initialbeginflag=16'b0010_0000_0000_0000;i=0;continue='TRUE;while((i<16)&&continue)//Multipleconditionsusingoperators.beginif(flag[i])beg

3、in$display("EncounteredaTRUEbitatelementnumber%d",i);continue='FALSE;endi=i+1;endendForLoopintegercount;initialfor(count=0;count<128;count=count+1)$display("Count=%d",count);forloopscanalsobeusedtoinitializeanarrayormemory,asshownbelow.//Initializearrayelements'd

4、efineMAX_STATES32integerstate[0:'MAX_STATES-1];//Integerarraystatewithelements0:31integeri;initialbeginfor(i=0;i<32;i=i+2)//initializeallevenlocationswith0state[i]=0;for(i=1;i<32;i=i+2)//initializealloddlocationswith1state[i]=1;endRepeatLoop//Illustration1:increm

5、entanddisplaycountfrom0to127integercount;initialbegincount=0;repeat(128)begin$display("Count=%d",count);count=count+1;endend//Illustration2:Databuffermoduleexample//Afteritreceivesadata_startsignal.//Readsdatafornext8cycles.moduledata_buffer(data_start,data,clock

6、);parametercycles=8;inputdata_start;input[15:0]data;inputclock;reg[15:0]buffer[0:7];integeri;always@(posedgeclock)beginif(data_start)//datastartsignalistruebegini=0;repeat(cycles)//Storedataattheposedgeofnext8clock//cyclesbegin@(posedgeclock)buffer[i]=data;//wait

7、stillnext//posedgetolatchdatai=i+1;endendendendmoduleForeverloop//Example1:Clockgeneration//Useforeverloopinsteadofalwaysblockregclock;initialbeginclock=1'b0;forever#10clock=~clock;//Clockwithperiodof20unitsend//Example2:Synchronizetworegistervaluesateverypositiv

8、eedgeof//clockregclock;regx,y;initialforever@(posedgeclock)x=y;

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

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

當(dāng)前文檔最多預(yù)覽五頁(yè),下載文檔查看全文
溫馨提示:
1. 部分包含數(shù)學(xué)公式或PPT動(dòng)畫的文件,查看預(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)系客服處理。