Sign in
foss-fpga-tools
/
third_party
/
Surelog
/
e911119afa19222dc9bbad9ba934f3d965e34302
/
.
/
SVIncCompil
/
Testcases
/
Google
/
chapter-12
/
12.7.2--repeat.sv
blob: 721c5c6ecfb925214936b6658463259922d65db7 [
file
] [
log
] [
blame
]
/*
:name: repeat_loop
:description: A module testing repeat loop
:should_fail: 0
:tags: 12.7.2
*/
module
repeat_tb
();
int
a
=
128
;
initial
begin
repeat
(
a
)
$display
(
"repeat"
);
end
endmodule