Sign in
foss-fpga-tools
/
third_party
/
Surelog
/
356a4bf2123fc606ca19fbed9b9c535f149fdec5
/
.
/
SVIncCompil
/
Testcases
/
YosysTests
/
regression
/
issue_00567
/
top.v
blob: 18e87201e71e7c005baaa970c93891d067c2f8a1 [
file
] [
log
] [
blame
]
// 4-input, route-through LUT test.
module
top
(
(*
keep
*)
input
[
3
:
0
]
I
,
output O
);
//Cell instances
SB_LUT4
#(
.
LUT_INIT
(
16
'b0100000000000000)
) LUT (
.I0(),
.I1(I[1]),
.I2(),
.I3(),
.O(O)
);
endmodule // top