mirror of
https://github.com/hneemann/Digital.git
synced 2025-09-28 07:28:20 -04:00
removed identities from tt2 files
This commit is contained in:
parent
dd946eedbf
commit
845ea28097
@ -33,7 +33,15 @@ public class TT2Exporter implements ExpressionExporter<TT2Exporter> {
|
|||||||
* Creates a new instance
|
* Creates a new instance
|
||||||
*/
|
*/
|
||||||
public TT2Exporter() {
|
public TT2Exporter() {
|
||||||
builder = new BuilderCollector();
|
builder = new BuilderCollector() {
|
||||||
|
@Override
|
||||||
|
public BuilderCollector addCombinatorial(String name, Expression expression) throws BuilderException {
|
||||||
|
if (pinMap.isSimpleAlias(name, expression))
|
||||||
|
return this;
|
||||||
|
else
|
||||||
|
return super.addCombinatorial(name, expression);
|
||||||
|
}
|
||||||
|
};
|
||||||
pinMap = new PinMap();
|
pinMap = new PinMap();
|
||||||
device = "f1502plcc44";
|
device = "f1502plcc44";
|
||||||
projectName = "unknown";
|
projectName = "unknown";
|
||||||
|
Loading…
x
Reference in New Issue
Block a user