From f27c7284729ba3dc4c03d112314570a7f4ffca27 Mon Sep 17 00:00:00 2001 From: Markus Koch Date: Sun, 22 Sep 2019 19:11:43 +0200 Subject: [PATCH] sw: Implement bodgefix for schematic rev 03L --- sw/kousaten/src/fpga_cell_lut34.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sw/kousaten/src/fpga_cell_lut34.c b/sw/kousaten/src/fpga_cell_lut34.c index c0e7d0b..0c16dfb 100644 --- a/sw/kousaten/src/fpga_cell_lut34.c +++ b/sw/kousaten/src/fpga_cell_lut34.c @@ -39,7 +39,7 @@ static int LUT_IN_BITMAP[4][3] = { /* LUT OUT MUX Definitions */ static int LUT_OUT_MUX[4][4] = { {LUT_OUT_C, LUT_OUT_A, LUT_OUT_B, LUT_OUT_B_ASYNC}, - {LUT_OUT_C, LUT_OUT_B_ASYNC, LUT_OUT_B, LUT_OUT_A}, + {LUT_OUT_C, LUT_OUT_B_ASYNC, LUT_OUT_A, LUT_OUT_A}, {LUT_OUT_C, LUT_OUT_A, LUT_OUT_B, LUT_OUT_B_ASYNC}, {LUT_OUT_C, LUT_OUT_B_ASYNC, LUT_OUT_B, LUT_OUT_A} };