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