Sign in
foss-fpga-tools
/
third_party
/
Surelog
/
4a79a47b7dd03dd4b2776ee40322b0149935d234
/
.
/
src
/
Testcases
/
Google
/
chapter-10
/
10.3.2--cont-assignment.sv
blob: c529cb808249f577dd9302b49f6c53d6fcf54648 [
file
] [
log
] [
blame
]
/*
:name: cont_assignment
:description: continuous assignment test
:should_fail: 0
:tags: 10.3.2
*/
module
top
(
input a
,
input b
);
wire w
;
assign w
=
a
&
b
;
endmodule