Sign in
foss-fpga-tools
/
third_party
/
Surelog
/
4a79a47b7dd03dd4b2776ee40322b0149935d234
/
.
/
src
/
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