15 lines
212 B
Coq
15 lines
212 B
Coq
|
|
module test;
|
||
|
|
|
||
|
|
parameter parm1 = 0;
|
||
|
|
parameter parm2 = parm1 == 0;
|
||
|
|
|
||
|
|
initial begin
|
||
|
|
// if got here then we compiled
|
||
|
|
if (parm2)
|
||
|
|
$display("PASSED");
|
||
|
|
else
|
||
|
|
$display("FAILED");
|
||
|
|
end
|
||
|
|
|
||
|
|
endmodule
|