Commit 8e6d4d3f by Alan Mishchenko

Removing restruction on the number of LUT inputs.

parent d8dbc712
...@@ -116,13 +116,13 @@ Fpga_LutLib_t * Fpga_LutLibRead( char * FileName, int fVerbose ) ...@@ -116,13 +116,13 @@ Fpga_LutLib_t * Fpga_LutLibRead( char * FileName, int fVerbose )
i++; i++;
} }
p->LutMax = i-1; p->LutMax = i-1;
/*
if ( p->LutMax > FPGA_MAX_LEAVES ) if ( p->LutMax > FPGA_MAX_LEAVES )
{ {
p->LutMax = FPGA_MAX_LEAVES; p->LutMax = FPGA_MAX_LEAVES;
printf( "Warning: LUTs with more than %d inputs will not be used.\n", FPGA_MAX_LEAVES ); printf( "Warning: LUTs with more than %d inputs will not be used.\n", FPGA_MAX_LEAVES );
} }
*/
// check the library // check the library
if ( p->fVarPinDelays ) if ( p->fVarPinDelays )
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment