mirror of
https://github.com/hneemann/Digital.git
synced 2025-09-27 15:03:21 -04:00
detect more switches as directed simple switches
This commit is contained in:
parent
08f92d2e5c
commit
26e3fe89af
@ -76,8 +76,19 @@ public class Switch implements Element, NodeInterface {
|
|||||||
constant = in2.searchConstant();
|
constant = in2.searchConstant();
|
||||||
if (constant != null)
|
if (constant != null)
|
||||||
switchModel = new SimpleSwitch(constant, output1);
|
switchModel = new SimpleSwitch(constant, output1);
|
||||||
else
|
else {
|
||||||
switchModel = new RealSwitch(in1, in2);
|
// not a constant
|
||||||
|
boolean def1 = in1.isAlwaysDefined();
|
||||||
|
boolean def2 = in2.isAlwaysDefined();
|
||||||
|
if (def1 == def2)
|
||||||
|
switchModel = new RealSwitch(in1, in2);
|
||||||
|
else {
|
||||||
|
if (def1)
|
||||||
|
switchModel = new SimpleSwitch(input1, output2);
|
||||||
|
else
|
||||||
|
switchModel = new SimpleSwitch(input2, output1);
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
switchModel = new SimpleSwitch(input1, output2);
|
switchModel = new SimpleSwitch(input1, output2);
|
||||||
|
@ -63,7 +63,7 @@ public final class CommonBusValue extends ObservableValue implements NodeInterfa
|
|||||||
/**
|
/**
|
||||||
* Returns true if this net is a constant
|
* Returns true if this net is a constant
|
||||||
*
|
*
|
||||||
* @return true if this is a constant
|
* @return the constant if this is a constant, null otherwise
|
||||||
*/
|
*/
|
||||||
public ObservableValue searchConstant() {
|
public ObservableValue searchConstant() {
|
||||||
for (ObservableValue i : inputs)
|
for (ObservableValue i : inputs)
|
||||||
@ -72,6 +72,19 @@ public final class CommonBusValue extends ObservableValue implements NodeInterfa
|
|||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Checks if this net is always defined.
|
||||||
|
* This means it can never be in a high z state.
|
||||||
|
*
|
||||||
|
* @return true if this net is always defined
|
||||||
|
*/
|
||||||
|
public boolean isAlwaysDefined() {
|
||||||
|
for (ObservableValue i : inputs)
|
||||||
|
if (!i.supportsHighZ())
|
||||||
|
return true;
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public String toString() {
|
public String toString() {
|
||||||
return "CommonBusValue{"
|
return "CommonBusValue{"
|
||||||
|
@ -4,7 +4,10 @@
|
|||||||
<attributes>
|
<attributes>
|
||||||
<entry>
|
<entry>
|
||||||
<string>Description</string>
|
<string>Description</string>
|
||||||
<string>10 Transistor Full Adder</string>
|
<string>10 Transistor Full Adder
|
||||||
|
The drivers represent p-channel fets. Needed to
|
||||||
|
avoid the resistance problem
|
||||||
|
(see https://github.com/hneemann/Digital/issues/30).</string>
|
||||||
</entry>
|
</entry>
|
||||||
</attributes>
|
</attributes>
|
||||||
<visualElements>
|
<visualElements>
|
||||||
@ -51,10 +54,6 @@
|
|||||||
<visualElement>
|
<visualElement>
|
||||||
<elementName>Testcase</elementName>
|
<elementName>Testcase</elementName>
|
||||||
<elementAttributes>
|
<elementAttributes>
|
||||||
<entry>
|
|
||||||
<string>Label</string>
|
|
||||||
<string>Failing</string>
|
|
||||||
</entry>
|
|
||||||
<entry>
|
<entry>
|
||||||
<string>Testdata</string>
|
<string>Testdata</string>
|
||||||
<testData>
|
<testData>
|
||||||
@ -140,16 +139,6 @@
|
|||||||
</elementAttributes>
|
</elementAttributes>
|
||||||
<pos x="780" y="560"/>
|
<pos x="780" y="560"/>
|
||||||
</visualElement>
|
</visualElement>
|
||||||
<visualElement>
|
|
||||||
<elementName>PFET</elementName>
|
|
||||||
<elementAttributes/>
|
|
||||||
<pos x="840" y="320"/>
|
|
||||||
</visualElement>
|
|
||||||
<visualElement>
|
|
||||||
<elementName>PFET</elementName>
|
|
||||||
<elementAttributes/>
|
|
||||||
<pos x="900" y="320"/>
|
|
||||||
</visualElement>
|
|
||||||
<visualElement>
|
<visualElement>
|
||||||
<elementName>NFET</elementName>
|
<elementName>NFET</elementName>
|
||||||
<elementAttributes/>
|
<elementAttributes/>
|
||||||
@ -215,6 +204,34 @@
|
|||||||
<elementAttributes/>
|
<elementAttributes/>
|
||||||
<pos x="1020" y="360"/>
|
<pos x="1020" y="360"/>
|
||||||
</visualElement>
|
</visualElement>
|
||||||
|
<visualElement>
|
||||||
|
<elementName>DriverInvSel</elementName>
|
||||||
|
<elementAttributes>
|
||||||
|
<entry>
|
||||||
|
<string>rotation</string>
|
||||||
|
<rotation rotation="3"/>
|
||||||
|
</entry>
|
||||||
|
<entry>
|
||||||
|
<string>flipSelPos</string>
|
||||||
|
<boolean>true</boolean>
|
||||||
|
</entry>
|
||||||
|
</elementAttributes>
|
||||||
|
<pos x="860" y="340"/>
|
||||||
|
</visualElement>
|
||||||
|
<visualElement>
|
||||||
|
<elementName>DriverInvSel</elementName>
|
||||||
|
<elementAttributes>
|
||||||
|
<entry>
|
||||||
|
<string>rotation</string>
|
||||||
|
<rotation rotation="3"/>
|
||||||
|
</entry>
|
||||||
|
<entry>
|
||||||
|
<string>flipSelPos</string>
|
||||||
|
<boolean>true</boolean>
|
||||||
|
</entry>
|
||||||
|
</elementAttributes>
|
||||||
|
<pos x="920" y="340"/>
|
||||||
|
</visualElement>
|
||||||
</visualElements>
|
</visualElements>
|
||||||
<wires>
|
<wires>
|
||||||
<wire>
|
<wire>
|
||||||
@ -229,22 +246,10 @@
|
|||||||
<p1 x="1080" y="320"/>
|
<p1 x="1080" y="320"/>
|
||||||
<p2 x="1100" y="320"/>
|
<p2 x="1100" y="320"/>
|
||||||
</wire>
|
</wire>
|
||||||
<wire>
|
|
||||||
<p1 x="880" y="320"/>
|
|
||||||
<p2 x="900" y="320"/>
|
|
||||||
</wire>
|
|
||||||
<wire>
|
|
||||||
<p1 x="800" y="320"/>
|
|
||||||
<p2 x="840" y="320"/>
|
|
||||||
</wire>
|
|
||||||
<wire>
|
<wire>
|
||||||
<p1 x="1100" y="320"/>
|
<p1 x="1100" y="320"/>
|
||||||
<p2 x="1120" y="320"/>
|
<p2 x="1120" y="320"/>
|
||||||
</wire>
|
</wire>
|
||||||
<wire>
|
|
||||||
<p1 x="960" y="240"/>
|
|
||||||
<p2 x="1160" y="240"/>
|
|
||||||
</wire>
|
|
||||||
<wire>
|
<wire>
|
||||||
<p1 x="1120" y="480"/>
|
<p1 x="1120" y="480"/>
|
||||||
<p2 x="1140" y="480"/>
|
<p2 x="1140" y="480"/>
|
||||||
@ -257,6 +262,26 @@
|
|||||||
<p1 x="1120" y="260"/>
|
<p1 x="1120" y="260"/>
|
||||||
<p2 x="1140" y="260"/>
|
<p2 x="1140" y="260"/>
|
||||||
</wire>
|
</wire>
|
||||||
|
<wire>
|
||||||
|
<p1 x="1100" y="460"/>
|
||||||
|
<p2 x="1160" y="460"/>
|
||||||
|
</wire>
|
||||||
|
<wire>
|
||||||
|
<p1 x="780" y="620"/>
|
||||||
|
<p2 x="1160" y="620"/>
|
||||||
|
</wire>
|
||||||
|
<wire>
|
||||||
|
<p1 x="960" y="240"/>
|
||||||
|
<p2 x="1160" y="240"/>
|
||||||
|
</wire>
|
||||||
|
<wire>
|
||||||
|
<p1 x="800" y="340"/>
|
||||||
|
<p2 x="840" y="340"/>
|
||||||
|
</wire>
|
||||||
|
<wire>
|
||||||
|
<p1 x="880" y="340"/>
|
||||||
|
<p2 x="900" y="340"/>
|
||||||
|
</wire>
|
||||||
<wire>
|
<wire>
|
||||||
<p1 x="780" y="500"/>
|
<p1 x="780" y="500"/>
|
||||||
<p2 x="860" y="500"/>
|
<p2 x="860" y="500"/>
|
||||||
@ -271,12 +296,16 @@
|
|||||||
</wire>
|
</wire>
|
||||||
<wire>
|
<wire>
|
||||||
<p1 x="780" y="280"/>
|
<p1 x="780" y="280"/>
|
||||||
<p2 x="860" y="280"/>
|
<p2 x="800" y="280"/>
|
||||||
</wire>
|
</wire>
|
||||||
<wire>
|
<wire>
|
||||||
<p1 x="860" y="280"/>
|
<p1 x="860" y="280"/>
|
||||||
<p2 x="880" y="280"/>
|
<p2 x="880" y="280"/>
|
||||||
</wire>
|
</wire>
|
||||||
|
<wire>
|
||||||
|
<p1 x="800" y="280"/>
|
||||||
|
<p2 x="860" y="280"/>
|
||||||
|
</wire>
|
||||||
<wire>
|
<wire>
|
||||||
<p1 x="800" y="440"/>
|
<p1 x="800" y="440"/>
|
||||||
<p2 x="860" y="440"/>
|
<p2 x="860" y="440"/>
|
||||||
@ -325,29 +354,21 @@
|
|||||||
<p1 x="1060" y="540"/>
|
<p1 x="1060" y="540"/>
|
||||||
<p2 x="1120" y="540"/>
|
<p2 x="1120" y="540"/>
|
||||||
</wire>
|
</wire>
|
||||||
<wire>
|
|
||||||
<p1 x="1100" y="460"/>
|
|
||||||
<p2 x="1160" y="460"/>
|
|
||||||
</wire>
|
|
||||||
<wire>
|
|
||||||
<p1 x="780" y="620"/>
|
|
||||||
<p2 x="1160" y="620"/>
|
|
||||||
</wire>
|
|
||||||
<wire>
|
<wire>
|
||||||
<p1 x="800" y="260"/>
|
<p1 x="800" y="260"/>
|
||||||
<p2 x="800" y="280"/>
|
|
||||||
</wire>
|
|
||||||
<wire>
|
|
||||||
<p1 x="800" y="320"/>
|
|
||||||
<p2 x="800" y="440"/>
|
|
||||||
</wire>
|
|
||||||
<wire>
|
|
||||||
<p1 x="800" y="280"/>
|
|
||||||
<p2 x="800" y="320"/>
|
<p2 x="800" y="320"/>
|
||||||
</wire>
|
</wire>
|
||||||
|
<wire>
|
||||||
|
<p1 x="800" y="320"/>
|
||||||
|
<p2 x="800" y="340"/>
|
||||||
|
</wire>
|
||||||
|
<wire>
|
||||||
|
<p1 x="800" y="340"/>
|
||||||
|
<p2 x="800" y="440"/>
|
||||||
|
</wire>
|
||||||
<wire>
|
<wire>
|
||||||
<p1 x="880" y="280"/>
|
<p1 x="880" y="280"/>
|
||||||
<p2 x="880" y="320"/>
|
<p2 x="880" y="340"/>
|
||||||
</wire>
|
</wire>
|
||||||
<wire>
|
<wire>
|
||||||
<p1 x="880" y="380"/>
|
<p1 x="880" y="380"/>
|
||||||
@ -474,4 +495,5 @@
|
|||||||
<p2 x="1100" y="460"/>
|
<p2 x="1100" y="460"/>
|
||||||
</wire>
|
</wire>
|
||||||
</wires>
|
</wires>
|
||||||
|
<measurementOrdering/>
|
||||||
</circuit>
|
</circuit>
|
@ -4,7 +4,10 @@
|
|||||||
<attributes>
|
<attributes>
|
||||||
<entry>
|
<entry>
|
||||||
<string>Description</string>
|
<string>Description</string>
|
||||||
<string>Static Energy Recovery Full Adder (SERF)</string>
|
<string>Static Energy Recovery Full Adder (SERF)
|
||||||
|
The drivers represent n-channel fets. Needed to
|
||||||
|
avoid the resistance problem
|
||||||
|
(see https://github.com/hneemann/Digital/issues/30).</string>
|
||||||
</entry>
|
</entry>
|
||||||
</attributes>
|
</attributes>
|
||||||
<visualElements>
|
<visualElements>
|
||||||
@ -33,21 +36,11 @@
|
|||||||
<elementAttributes/>
|
<elementAttributes/>
|
||||||
<pos x="840" y="320"/>
|
<pos x="840" y="320"/>
|
||||||
</visualElement>
|
</visualElement>
|
||||||
<visualElement>
|
|
||||||
<elementName>NFET</elementName>
|
|
||||||
<elementAttributes/>
|
|
||||||
<pos x="800" y="400"/>
|
|
||||||
</visualElement>
|
|
||||||
<visualElement>
|
<visualElement>
|
||||||
<elementName>PFET</elementName>
|
<elementName>PFET</elementName>
|
||||||
<elementAttributes/>
|
<elementAttributes/>
|
||||||
<pos x="840" y="260"/>
|
<pos x="840" y="260"/>
|
||||||
</visualElement>
|
</visualElement>
|
||||||
<visualElement>
|
|
||||||
<elementName>NFET</elementName>
|
|
||||||
<elementAttributes/>
|
|
||||||
<pos x="880" y="400"/>
|
|
||||||
</visualElement>
|
|
||||||
<visualElement>
|
<visualElement>
|
||||||
<elementName>PFET</elementName>
|
<elementName>PFET</elementName>
|
||||||
<elementAttributes/>
|
<elementAttributes/>
|
||||||
@ -63,11 +56,6 @@
|
|||||||
<elementAttributes/>
|
<elementAttributes/>
|
||||||
<pos x="1080" y="380"/>
|
<pos x="1080" y="380"/>
|
||||||
</visualElement>
|
</visualElement>
|
||||||
<visualElement>
|
|
||||||
<elementName>NFET</elementName>
|
|
||||||
<elementAttributes/>
|
|
||||||
<pos x="1120" y="460"/>
|
|
||||||
</visualElement>
|
|
||||||
<visualElement>
|
<visualElement>
|
||||||
<elementName>In</elementName>
|
<elementName>In</elementName>
|
||||||
<elementAttributes>
|
<elementAttributes>
|
||||||
@ -83,11 +71,6 @@
|
|||||||
<elementAttributes/>
|
<elementAttributes/>
|
||||||
<pos x="1120" y="580"/>
|
<pos x="1120" y="580"/>
|
||||||
</visualElement>
|
</visualElement>
|
||||||
<visualElement>
|
|
||||||
<elementName>NFET</elementName>
|
|
||||||
<elementAttributes/>
|
|
||||||
<pos x="1040" y="460"/>
|
|
||||||
</visualElement>
|
|
||||||
<visualElement>
|
<visualElement>
|
||||||
<elementName>Out</elementName>
|
<elementName>Out</elementName>
|
||||||
<elementAttributes>
|
<elementAttributes>
|
||||||
@ -111,10 +94,6 @@
|
|||||||
<visualElement>
|
<visualElement>
|
||||||
<elementName>Testcase</elementName>
|
<elementName>Testcase</elementName>
|
||||||
<elementAttributes>
|
<elementAttributes>
|
||||||
<entry>
|
|
||||||
<string>Label</string>
|
|
||||||
<string>Failing</string>
|
|
||||||
</entry>
|
|
||||||
<entry>
|
<entry>
|
||||||
<string>Testdata</string>
|
<string>Testdata</string>
|
||||||
<testData>
|
<testData>
|
||||||
@ -210,8 +189,60 @@
|
|||||||
<elementAttributes/>
|
<elementAttributes/>
|
||||||
<pos x="1100" y="300"/>
|
<pos x="1100" y="300"/>
|
||||||
</visualElement>
|
</visualElement>
|
||||||
|
<visualElement>
|
||||||
|
<elementName>Driver</elementName>
|
||||||
|
<elementAttributes>
|
||||||
|
<entry>
|
||||||
|
<string>rotation</string>
|
||||||
|
<rotation rotation="1"/>
|
||||||
|
</entry>
|
||||||
|
</elementAttributes>
|
||||||
|
<pos x="900" y="420"/>
|
||||||
|
</visualElement>
|
||||||
|
<visualElement>
|
||||||
|
<elementName>Driver</elementName>
|
||||||
|
<elementAttributes>
|
||||||
|
<entry>
|
||||||
|
<string>rotation</string>
|
||||||
|
<rotation rotation="1"/>
|
||||||
|
</entry>
|
||||||
|
</elementAttributes>
|
||||||
|
<pos x="1140" y="480"/>
|
||||||
|
</visualElement>
|
||||||
|
<visualElement>
|
||||||
|
<elementName>Driver</elementName>
|
||||||
|
<elementAttributes>
|
||||||
|
<entry>
|
||||||
|
<string>rotation</string>
|
||||||
|
<rotation rotation="1"/>
|
||||||
|
</entry>
|
||||||
|
</elementAttributes>
|
||||||
|
<pos x="1060" y="480"/>
|
||||||
|
</visualElement>
|
||||||
|
<visualElement>
|
||||||
|
<elementName>Driver</elementName>
|
||||||
|
<elementAttributes>
|
||||||
|
<entry>
|
||||||
|
<string>rotation</string>
|
||||||
|
<rotation rotation="1"/>
|
||||||
|
</entry>
|
||||||
|
</elementAttributes>
|
||||||
|
<pos x="820" y="420"/>
|
||||||
|
</visualElement>
|
||||||
</visualElements>
|
</visualElements>
|
||||||
<wires>
|
<wires>
|
||||||
|
<wire>
|
||||||
|
<p1 x="1100" y="480"/>
|
||||||
|
<p2 x="1120" y="480"/>
|
||||||
|
</wire>
|
||||||
|
<wire>
|
||||||
|
<p1 x="1020" y="480"/>
|
||||||
|
<p2 x="1040" y="480"/>
|
||||||
|
</wire>
|
||||||
|
<wire>
|
||||||
|
<p1 x="780" y="480"/>
|
||||||
|
<p2 x="900" y="480"/>
|
||||||
|
</wire>
|
||||||
<wire>
|
<wire>
|
||||||
<p1 x="740" y="320"/>
|
<p1 x="740" y="320"/>
|
||||||
<p2 x="780" y="320"/>
|
<p2 x="780" y="320"/>
|
||||||
@ -224,10 +255,6 @@
|
|||||||
<p1 x="780" y="320"/>
|
<p1 x="780" y="320"/>
|
||||||
<p2 x="840" y="320"/>
|
<p2 x="840" y="320"/>
|
||||||
</wire>
|
</wire>
|
||||||
<wire>
|
|
||||||
<p1 x="780" y="480"/>
|
|
||||||
<p2 x="900" y="480"/>
|
|
||||||
</wire>
|
|
||||||
<wire>
|
<wire>
|
||||||
<p1 x="1140" y="640"/>
|
<p1 x="1140" y="640"/>
|
||||||
<p2 x="1180" y="640"/>
|
<p2 x="1180" y="640"/>
|
||||||
@ -236,6 +263,14 @@
|
|||||||
<p1 x="1020" y="640"/>
|
<p1 x="1020" y="640"/>
|
||||||
<p2 x="1100" y="640"/>
|
<p2 x="1100" y="640"/>
|
||||||
</wire>
|
</wire>
|
||||||
|
<wire>
|
||||||
|
<p1 x="860" y="420"/>
|
||||||
|
<p2 x="880" y="420"/>
|
||||||
|
</wire>
|
||||||
|
<wire>
|
||||||
|
<p1 x="780" y="420"/>
|
||||||
|
<p2 x="800" y="420"/>
|
||||||
|
</wire>
|
||||||
<wire>
|
<wire>
|
||||||
<p1 x="740" y="260"/>
|
<p1 x="740" y="260"/>
|
||||||
<p2 x="760" y="260"/>
|
<p2 x="760" y="260"/>
|
||||||
@ -276,22 +311,6 @@
|
|||||||
<p1 x="760" y="720"/>
|
<p1 x="760" y="720"/>
|
||||||
<p2 x="1140" y="720"/>
|
<p2 x="1140" y="720"/>
|
||||||
</wire>
|
</wire>
|
||||||
<wire>
|
|
||||||
<p1 x="1100" y="500"/>
|
|
||||||
<p2 x="1120" y="500"/>
|
|
||||||
</wire>
|
|
||||||
<wire>
|
|
||||||
<p1 x="1020" y="500"/>
|
|
||||||
<p2 x="1040" y="500"/>
|
|
||||||
</wire>
|
|
||||||
<wire>
|
|
||||||
<p1 x="860" y="440"/>
|
|
||||||
<p2 x="880" y="440"/>
|
|
||||||
</wire>
|
|
||||||
<wire>
|
|
||||||
<p1 x="780" y="440"/>
|
|
||||||
<p2 x="800" y="440"/>
|
|
||||||
</wire>
|
|
||||||
<wire>
|
<wire>
|
||||||
<p1 x="1060" y="440"/>
|
<p1 x="1060" y="440"/>
|
||||||
<p2 x="1100" y="440"/>
|
<p2 x="1100" y="440"/>
|
||||||
@ -409,7 +428,7 @@
|
|||||||
<p2 x="1100" y="440"/>
|
<p2 x="1100" y="440"/>
|
||||||
</wire>
|
</wire>
|
||||||
<wire>
|
<wire>
|
||||||
<p1 x="1100" y="500"/>
|
<p1 x="1100" y="480"/>
|
||||||
<p2 x="1100" y="520"/>
|
<p2 x="1100" y="520"/>
|
||||||
</wire>
|
</wire>
|
||||||
<wire>
|
<wire>
|
||||||
@ -425,7 +444,7 @@
|
|||||||
<p2 x="860" y="260"/>
|
<p2 x="860" y="260"/>
|
||||||
</wire>
|
</wire>
|
||||||
<wire>
|
<wire>
|
||||||
<p1 x="860" y="440"/>
|
<p1 x="860" y="420"/>
|
||||||
<p2 x="860" y="460"/>
|
<p2 x="860" y="460"/>
|
||||||
</wire>
|
</wire>
|
||||||
<wire>
|
<wire>
|
||||||
@ -434,22 +453,22 @@
|
|||||||
</wire>
|
</wire>
|
||||||
<wire>
|
<wire>
|
||||||
<p1 x="780" y="320"/>
|
<p1 x="780" y="320"/>
|
||||||
<p2 x="780" y="440"/>
|
<p2 x="780" y="420"/>
|
||||||
</wire>
|
</wire>
|
||||||
<wire>
|
<wire>
|
||||||
<p1 x="780" y="440"/>
|
<p1 x="780" y="420"/>
|
||||||
<p2 x="780" y="480"/>
|
<p2 x="780" y="480"/>
|
||||||
</wire>
|
</wire>
|
||||||
<wire>
|
<wire>
|
||||||
<p1 x="1020" y="380"/>
|
<p1 x="1020" y="380"/>
|
||||||
<p2 x="1020" y="500"/>
|
<p2 x="1020" y="480"/>
|
||||||
</wire>
|
</wire>
|
||||||
<wire>
|
<wire>
|
||||||
<p1 x="1020" y="540"/>
|
<p1 x="1020" y="540"/>
|
||||||
<p2 x="1020" y="640"/>
|
<p2 x="1020" y="640"/>
|
||||||
</wire>
|
</wire>
|
||||||
<wire>
|
<wire>
|
||||||
<p1 x="1020" y="500"/>
|
<p1 x="1020" y="480"/>
|
||||||
<p2 x="1020" y="540"/>
|
<p2 x="1020" y="540"/>
|
||||||
</wire>
|
</wire>
|
||||||
</wires>
|
</wires>
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<circuit>
|
<circuit>
|
||||||
<version>1</version>
|
<version>1</version>
|
||||||
|
<attributes/>
|
||||||
<visualElements>
|
<visualElements>
|
||||||
<visualElement>
|
<visualElement>
|
||||||
<elementName>NFET</elementName>
|
<elementName>NFET</elementName>
|
||||||
@ -50,6 +51,10 @@
|
|||||||
<string>Label</string>
|
<string>Label</string>
|
||||||
<string>S</string>
|
<string>S</string>
|
||||||
</entry>
|
</entry>
|
||||||
|
<entry>
|
||||||
|
<string>isHighZ</string>
|
||||||
|
<boolean>true</boolean>
|
||||||
|
</entry>
|
||||||
</elementAttributes>
|
</elementAttributes>
|
||||||
<pos x="500" y="280"/>
|
<pos x="500" y="280"/>
|
||||||
</visualElement>
|
</visualElement>
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<circuit>
|
<circuit>
|
||||||
<version>1</version>
|
<version>1</version>
|
||||||
|
<attributes/>
|
||||||
<visualElements>
|
<visualElements>
|
||||||
<visualElement>
|
<visualElement>
|
||||||
<elementName>In</elementName>
|
<elementName>In</elementName>
|
||||||
@ -45,6 +46,10 @@
|
|||||||
<string>Label</string>
|
<string>Label</string>
|
||||||
<string>D</string>
|
<string>D</string>
|
||||||
</entry>
|
</entry>
|
||||||
|
<entry>
|
||||||
|
<string>isHighZ</string>
|
||||||
|
<boolean>true</boolean>
|
||||||
|
</entry>
|
||||||
</elementAttributes>
|
</elementAttributes>
|
||||||
<pos x="500" y="280"/>
|
<pos x="500" y="280"/>
|
||||||
</visualElement>
|
</visualElement>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user