Sign in
foss-fpga-tools
/
third_party
/
Surelog
/
e911119afa19222dc9bbad9ba934f3d965e34302
/
.
/
SVIncCompil
/
Testcases
/
Google
/
chapter-12
/
12.8--continue.sv
blob: f0e6409bf7cec6ee8b9807881f435cdcaea4f0b1 [
file
] [
log
] [
blame
]
/*
:name: jump_continue
:description: A module testing continue statement
:should_fail: 0
:tags: 12.8
*/
module
jump_tb
();
initial
begin
for
(
int
i
=
0
;
i
<
256
;
i
++)
begin
if
(
i
<
100
)
continue
;
$display
(
i
);
end
end
endmodule