Sign in
foss-fpga-tools
/
third_party
/
Surelog
/
861ed7dc3ad91ddad1bf155cd28bdc110f3a5abb
/
.
/
SVIncCompil
/
Testcases
/
YosysTests
/
regression
/
issue_00675
/
top.v
blob: a143aaf76826cf44788b88ce59088bfe4ac1507e [
file
]
module
graphtest
(
A
,
Y
,
Z
);
input
[
3
:
0
]
A
;
output
[
2
:
0
]
Y
;
output
[
1
:
0
]
Z
;
assign Y
=
{
A
[
2
:
0
]
&
3
'h2 };
assign Z = A[2:1];
endmodule