Sign in
foss-fpga-tools
/
third_party
/
Surelog
/
refs/heads/mithro-patch-1
/
.
/
SVIncCompil
/
Testcases
/
Icarus
/
ivltests
/
pr718.v
blob: 7b737567205e2e0115e923f9c9ae8e29a86c0e3b [
file
] [
log
] [
blame
] [
edit
]
//
// 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