摘要:Description:The user can set a 16-bit value using toggle switches 15-0 and transfer this value to the first four hex digit displays by pressing KEY3.
阅读全文
posted @ 2008-11-28 20:47
|
|||
随笔分类 - Verilog
摘要:Description:The user can set a 16-bit value using toggle switches 15-0 and transfer this value to the first four hex digit displays by pressing KEY3.
阅读全文
posted @ 2008-11-28 20:47
摘要:在DE2关于Nios ii的范例中,有一个Reset_Delay.v的模块,代码如下:1 module Reset_Delay(iRST,iCLK,oRESET);2 input iCLK;3 input iRST;4 output reg oRESET;5 reg [23:0] Cont;6 always@(posedge iCLK or negedge iRST)7 begin8 if(!iR...
阅读全文
posted @ 2008-11-14 11:44
|
|||