sw: Fix fpga_cell_lut34_lut_get_out_mux

Was accessing wrong data when generating info for set 2.
sw
Markus Koch 2019-09-22 19:11:21 +02:00
parent 0a493bdd2a
commit 30c83a658f
1 changed files with 1 additions and 2 deletions

View File

@ -78,8 +78,6 @@ static int fpga_cell_lut34_lut_get_out_mux(int lut_group, char *ports) {
int i;
int lut;
ports = ports + lut_group;
if (lut_group < 0 || lut_group > 2) {
report(LL_ERROR,
"Invalid LUT group requested.");
@ -87,6 +85,7 @@ static int fpga_cell_lut34_lut_get_out_mux(int lut_group, char *ports) {
}
lut = lut_group * 2;
ports = ports + lut;
for (i = 0; i < 4; ++i) {
if (ports[0] == LUT_OUT_DC ||