Sign in
foss-fpga-tools
/
third_party
/
Surelog
/
36edd2bd845c2e56e36b75d2696ae7a98914e2a8
/
.
/
SVIncCompil
/
Testcases
/
Google
/
chapter-9
/
9.4.2.1--event_comma_op.sv
blob: b6a137d76a4476470a10ca069e7a739d4f60acee [
file
] [
log
] [
blame
]
/*
:name: event_comma_op
:description: event comma 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
,
b
,
c
,
d
)
out
=
(
a
|
b
)
&
(
c
|
d
);
endmodule