16 lines
217 B
Coq
16 lines
217 B
Coq
|
|
module test ();
|
||
|
|
|
||
|
|
// Note the implicit declaration of w.
|
||
|
|
assign w = 1'b1;
|
||
|
|
|
||
|
|
initial begin
|
||
|
|
#1 if (w !== 1'b1) begin
|
||
|
|
$display("FAILED");
|
||
|
|
$finish;
|
||
|
|
end
|
||
|
|
|
||
|
|
$display("PASSED");
|
||
|
|
end
|
||
|
|
|
||
|
|
endmodule
|