-
Hi there... I have a circuit which has 28 TTL IC's in the design and when I hit the 'Analyze' button I get the error of "Too many variables (inputs + flip-flops), 24 are allowed but 103 were found. I do have a large number of IO pins (Targeting an ATF1504-84pin) with 45. Is there a way I can increase the limit just to get a JEDEC file generated? (I understand how some of the other things like the Truth tables etc would be excessive). Wonderful software, I am learning a lot and this is my first foray into CPLDs! Thank you! |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 4 replies
-
and... Im following up on my own post in hopes that it may help someone else.... I found by looking at the source that the MAX_INPUTS_ALLOWED is set to 24. I following the next instructions here that got me set up with a compilation environment. I updated the MAX_INPUTS_ALLOWED to 250 and am compiling now... I have a few test errors that Im tracking down... will report back. |
Beta Was this translation helpful? Give feedback.
-
.. got it compiled... I was getting errors with maven-surefire-plugin so I ignored and used the build command below and the JAR compiled up great! Now the 'Analyze' command is running... the truth table is quite large and it has been sitting on the "Equations are being Calculated" message for about 30 minutes so far.... will wait patiently and see if it finishes overnight, my CPU isn't doing much tho so Im thinking I may need to run digital.jar with an increased memory space to give it a little more 'oomph!' mvn install -DskipTests |
Beta Was this translation helpful? Give feedback.
-
So far, the simulator only supports exact solution methods to determine a logic function from a truth table. This means that the determined logic function is guaranteed to be minimal, i.e. that there is no simpler normal form. |
Beta Was this translation helpful? Give feedback.
and... Im following up on my own post in hopes that it may help someone else.... I found by looking at the source that the MAX_INPUTS_ALLOWED is set to 24. I following the next instructions here that got me set up with a compilation environment. I updated the MAX_INPUTS_ALLOWED to 250 and am compiling now... I have a few test errors that Im tracking down... will report back.