Sign in
foss-fpga-tools
/
third_party
/
Surelog
/
6974ffc5ed0bd5daee67697a11331c4ec2ca9f1e
/
.
/
SVIncCompil
/
Testcases
/
YosysTests
/
simple
/
muxcover_mux8
/
top.v
blob: 15e0aa949b8d4e11135f93c22123902160621a7e [
file
]
module
top
(
input
[
5
:
0
]
S
,
input
[
63
:
0
]
D
,
output M256
);
`ifndef BUG
assign M256 = D[S];
`
else
assign M256
=
S
[
D
];
`endif
endmodule