[笔记一]LED建模
摘要:
一、Flashing_led_modulemodule flashing_led_module(input CLOCK_50,input RST_N,output[7:0] LEDG);parameter T1MS=20'd999_999;reg[19:0] Count;always@(posedge CLOCK_50 or negedge RST_N) if(!RST_N) Count<=20'd0; else if(Count==T1MS) Count<=20'd0; else Count<=Count+1'b1; reg[7:0] rLE 阅读全文
posted @ 2011-08-12 10:50 LiangXuan 阅读(886) 评论(0) 推荐(0)
浙公网安备 33010602011771号