10 lines
112 B
Coq
10 lines
112 B
Coq
|
|
module test;
|
||
|
|
logic y;
|
||
|
|
|
||
|
|
always_latch begin
|
||
|
|
y = 1'b0;
|
||
|
|
end
|
||
|
|
|
||
|
|
initial $display("FAILED");
|
||
|
|
endmodule
|