Sign in
foss-fpga-tools
/
third_party
/
Surelog
/
1c596881d1a7fc4baa7972b1f16b2e3d461aa200
/
.
/
src
/
Testcases
/
Google
/
chapter-9
/
9.4.2.1--event_or_op.sv
blob: 281457b28f8c203d95f3bd240a457e2e381552a8 [
file
] [
log
] [
blame
]
/*
:name: event_or_op
:description: event or operator
:should_fail: 0
:tags: 9.4.2.1
*/
module
block_tb
();
wire a
=
0
;
wire b
=
0
;
wire c
=
0
;
wire d
=
0
;
wire
out
=
0
;
always
@(
a
or
b
or
c
or
d
)
out
=
(
a
|
b
)
&
(
c
|
d
);
endmodule