Sign in
foss-fpga-tools
/
third_party
/
Surelog
/
e911119afa19222dc9bbad9ba934f3d965e34302
/
.
/
SVIncCompil
/
Testcases
/
Google
/
chapter-9
/
9.4.5--event_nonblocking_assignment_repeat.sv
blob: 1e1732c1fdb36ace1f61943d6b7600065a8c96a1 [
file
] [
log
] [
blame
]
/*
:name: event_nonblocking_assignment_repeat
:description: event non blk assignment repeat
:should_fail: 0
:tags: 9.4.5
*/
module
block_tb
();
reg a
=
0
;
reg b
=
1
;
wire clk
=
0
;
initial
begin
a
=
repeat
(
3
)
@(
posedge clk
)
b
;
end
endmodule