码迷,mamicode.com
首页 > 其他好文 > 详细

led

时间:2017-09-01 18:58:15      阅读:117      评论:0      收藏:0      [点我收藏+]

标签:style   output   out   tput   code   sam   always   bsp   logs   

Code 1: Led be lighted by delay time.

module ledl(clk,led);
input clk;
output [3:0]led;
reg [3:0]led;
reg [25:0]counter;
always@(posedge clk)
begin
  counter<=counter+1;
  if(counter==25b0000000000000001111111111) led=~led;  //Four led be lighted at same time.
end
endmodule

 

led

标签:style   output   out   tput   code   sam   always   bsp   logs   

原文地址:http://www.cnblogs.com/assassinn/p/7464613.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!