Verilog调用其他module模块,这样改就无法编译通过了?为什么呢
moduleled_test(clk,led_set,clk_hz);inputclk;outputled_set,clk_hz;wireclk_hz;regled_se...
module led_test(clk, led_set, clk_hz);
input clk;
output led_set,clk_hz;
wire clk_hz;
reg led_set;
clk_set clk_out(.clk (clk), .clk_hz (clk_hz));
always @(posedge clk_hz)
begin
led_set <= clk_hz;
end
endmodule
编译通过,改后
module led_test(input clk, output led_set, output clk_hz);
wire clk_hz;
reg led_set; 展开
input clk;
output led_set,clk_hz;
wire clk_hz;
reg led_set;
clk_set clk_out(.clk (clk), .clk_hz (clk_hz));
always @(posedge clk_hz)
begin
led_set <= clk_hz;
end
endmodule
编译通过,改后
module led_test(input clk, output led_set, output clk_hz);
wire clk_hz;
reg led_set; 展开
1个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询