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