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