Sign in
foss-fpga-tools
/
third_party
/
Surelog
/
6974ffc5ed0bd5daee67697a11331c4ec2ca9f1e
/
.
/
SVIncCompil
/
Testcases
/
Icarus
/
ivltests
/
pr718.v
blob: 7b737567205e2e0115e923f9c9ae8e29a86c0e3b [
file
]
//
// Verifies disable terminates a forked forever.
//
module
test
;
initial
begin
fork
:
F
forever
#10;
disable F
;
join
$display
(
"PASSED"
);
$finish
;
end
initial
begin
#20;
$display
(
"FAILED"
);
$finish
;
end
endmodule