From 72dabd64dbe0441c4183eec1082eb2c0aec271b7 Mon Sep 17 00:00:00 2001 From: Markus Koch Date: Mon, 23 Sep 2019 21:25:15 +0200 Subject: [PATCH] sw: Swap the order of the two LUTs in the bitstream --- sw/kousaten/src/fpga_cell_lut34.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/sw/kousaten/src/fpga_cell_lut34.c b/sw/kousaten/src/fpga_cell_lut34.c index 0c16dfb..d198785 100644 --- a/sw/kousaten/src/fpga_cell_lut34.c +++ b/sw/kousaten/src/fpga_cell_lut34.c @@ -10,12 +10,12 @@ static int need_fix = 1; /* LUT Definitions (correct offset, no fix must be applied) */ static int LUT4_BITMAP[16] = { - 16, 17, 18, 19, 20, 21, 22, 23, - 24, 25, 26, 27, 28, 29, 30, 31 + 24, 25, 26, 27, 28, 29, 30, 31, + 16, 17, 18, 19, 20, 21, 22, 23 }; static int LUT3_BITMAP[2][8] = { - {16, 17, 18, 19, 20, 21, 22, 23}, - {24, 25, 26, 27, 28, 29, 30, 31} + {24, 25, 26, 27, 28, 29, 30, 31}, + {16, 17, 18, 19, 20, 21, 22, 23} }; /* LUT Config Definitions */