Sign in
foss-fpga-tools
/
third_party
/
Surelog
/
e2529f92cedbbcb87ff4328ff53705669050198d
/
.
/
src
/
Testcases
/
YosysTests
/
simple
/
muxcover
/
top.v
blob: c6464e6f52cb74a24abb08eb4cdcc4683c204bba [
file
] [
log
] [
blame
]
module
top
(
input
[
7
:
0
]
S
,
input
[
255
:
0
]
D
,
output M256
);
`ifndef BUG
assign M256 = D[S];
`
else
assign M256
=
S
[
D
];
`endif
endmodule