Sign in
foss-fpga-tools
/
third_party
/
Surelog
/
356a4bf2123fc606ca19fbed9b9c535f149fdec5
/
.
/
SVIncCompil
/
Testcases
/
Icarus
/
ivltests
/
param_test4.v
blob: 71ff2580d174e1eae9f6e1f5f92e364ac4bb4102 [
file
] [
log
] [
blame
]
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