Sign in
foss-fpga-tools
/
third_party
/
Surelog
/
356a4bf2123fc606ca19fbed9b9c535f149fdec5
/
.
/
SVIncCompil
/
Testcases
/
Icarus
/
ivltests
/
pr823.v
blob: b36c47d95b32741f58a667c6d465c7e22dde2100 [
file
] [
log
] [
blame
]
module
main
;
reg
[
31
:
0
]
foo
;
initial foo
=
'b0;
initial begin
#1 if (foo !== 32'
d0
)
begin
$display
(
"FAILED"
);
$finish
;
end
$display
(
"PASSED"
);
end
endmodule
// main