17 lines
211 B
Coq
17 lines
211 B
Coq
|
|
module test( clk, a, b );
|
||
|
|
|
||
|
|
input clk;
|
||
|
|
output [0:0] a;
|
||
|
|
output b;
|
||
|
|
reg [0:0] a;
|
||
|
|
reg b;
|
||
|
|
|
||
|
|
integer i = 5;
|
||
|
|
|
||
|
|
always @(posedge clk) begin
|
||
|
|
a[i] <= 1'b0;
|
||
|
|
b <= 1'b0;
|
||
|
|
end
|
||
|
|
|
||
|
|
endmodule
|