EP4CE10芯片用verilog语言实现点亮LED的代码
时间: 2023-03-14 13:52:08 浏览: 163
module led ( input clk, input rst_n, output led );
reg [1:0] count; always @ (posedge clk or negedge rst_n)
if (~rst_n)
count <= 2'b00;
else
count <= count + 2'b01; assign led = count[1];
endmodule这段代码用Verilog语言实现了在EP4CE10芯片上点亮LED的功能。
阅读全文