summaryrefslogtreecommitdiffstats
path: root/src/map/fpga
diff options
context:
space:
mode:
authorAlan Mishchenko <alanmi@berkeley.edu>2011-11-10 23:17:08 -0800
committerAlan Mishchenko <alanmi@berkeley.edu>2011-11-10 23:17:08 -0800
commit8e6d4d3fe95e87d65dcf70296bafa9749204daae (patch)
tree6cf63f5c9b63a9817ea4628c138d281441ac776e /src/map/fpga
parentd8dbc712d3ceb946745a52b7b8111f9cbc8d5f73 (diff)
downloadabc-8e6d4d3fe95e87d65dcf70296bafa9749204daae.tar.gz
abc-8e6d4d3fe95e87d65dcf70296bafa9749204daae.tar.bz2
abc-8e6d4d3fe95e87d65dcf70296bafa9749204daae.zip
Removing restruction on the number of LUT inputs.
Diffstat (limited to 'src/map/fpga')
-rw-r--r--src/map/fpga/fpgaLib.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/map/fpga/fpgaLib.c b/src/map/fpga/fpgaLib.c
index 1c173ad9..51438513 100644
--- a/src/map/fpga/fpgaLib.c
+++ b/src/map/fpga/fpgaLib.c
@@ -116,13 +116,13 @@ Fpga_LutLib_t * Fpga_LutLibRead( char * FileName, int fVerbose )
i++;
}
p->LutMax = i-1;
-
+/*
if ( 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 );
}
-
+*/
// check the library
if ( p->fVarPinDelays )
{