Sign in
foss-fpga-tools
/
third_party
/
Surelog
/
5d8813c36fc3561ecb4c6ab9a579c7fbcb8e2d87
/
.
/
SVIncCompil
/
Testcases
/
Icarus
/
ivltests
/
pr718.v
blob: 7b737567205e2e0115e923f9c9ae8e29a86c0e3b [
file
] [
log
] [
blame
]
//
// 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