Sign in
foss-fpga-tools
/
third_party
/
Surelog
/
356a4bf2123fc606ca19fbed9b9c535f149fdec5
/
.
/
SVIncCompil
/
Testcases
/
UtdSV
/
forever-disable.v
blob: bf0742f6a644d22143d3ba4c8a85034c0abf09b3 [
file
] [
log
] [
blame
]
module
forever_disable
();
initial
begin
i
=
0
;
forever
begin
:
continue_block
if
(
i
==
a
)
disable continue_block
;
#1 i = i + 1;
end
end
endmodule