Sign in
foss-fpga-tools
/
third_party
/
Surelog
/
2b38692156ff2742b1c4c94d3b93df97f2145e0c
/
.
/
SVIncCompil
/
Testcases
/
YosysTestSuite
/
various
/
constmsk_test.v
blob: 0d0e58fefc02bd2022f2666ed07ad12243463359 [
file
]
module
test
(
input
[
3
:
0
]
A
,
output
[
3
:
0
]
Y1
,
Y2
);
assign Y1
=
|{
A
[
3
],
1
'b0, A[1]};
assign Y2 = |{A[2], 1'
b1
,
A
[
0
]};
endmodule