You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

29 lines
815 B
Coq

10 months ago
`timescale 1ns/1ns // /
module tb_led ();
10 months ago
reg tb_key; // ( initial , 使)
wire tb_led; // , 使 wire
10 months ago
//
initial begin
tb_key <= 1'b1; //
10 months ago
#200; // 200ns
tb_key <= 1'b0;
10 months ago
#500;
tb_key <= 1'b1;
10 months ago
#1000;
tb_key <= 1'b0;
10 months ago
end
10 months ago
// ,
10 months ago
led u_led(
.key (tb_key),
.led (tb_led) // wire, led, reg, , alaways, 使 wire
10 months ago
// .xx () // , ,
10 months ago
);
endmodule