Sign in
foss-fpga-tools
/
third_party
/
Surelog
/
713605cadef845b9f44d6469208fb6e902ace095
/
.
/
SVIncCompil
/
Testcases
/
Google
/
chapter-9
/
9.4.2.2--event_implicit.sv
blob: 451f2a59e06b3127598c296a157da35e312b61e1 [
file
] [
log
] [
blame
]
/*
:name: event_implicit
:description: event implicit list
:should_fail: 0
:tags: 9.4.2.2
*/
module
block_tb
();
wire a
=
0
;
wire b
=
0
;
wire c
=
0
;
wire d
=
0
;
wire
out
=
0
;
always
@(*)
out
=
(
a
|
b
)
&
(
c
|
d
);
endmodule