|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有账号?注册
x
module count(reset,clk,out);
input clk,reset;
output out;
reg [3:0] out;
initial out=4'b0000;
always @(posedge clk)
begin
if (reset) out<=4'b0000;
else out<=out+4'b0001;
end
endmodule
'timescale 1ns/1ns
'include "count.v"
module count_tb;
reg clk,reset;
wire [3:0] out;
parameter DELY=100;
always #DELY clk=~clk;
initial #DELY reset=1'b0;
initial #DELY clk=1'b0;
count count_tb(.reset(reset),.clk(clk),.out(out));
endmodule
为什么加上红色的代码后,modelsim 就不能编译了呢? 'timescale 和'include 不能在这里面用么? 这两根语句怎么用啊? |
|