内容简介:我用verilog写了一个简单的流水灯程序,只有几行代码,如下:module main(input clk,input rst,output reg [7:0] led );(*mark_debug = "true"*)reg [23:0] counter;always @(posedge clk) begin if(rst) begin counter <= 0;led...
用户评论
havenhome