misc fixes in gschemtoxschem.awk
This commit is contained in:
parent
fccb8b58f9
commit
a2779fab3c
|
|
@ -103,6 +103,7 @@ FNR==1{
|
|||
if($0 ~/numslots=/) {
|
||||
numslots = $0
|
||||
sub(/numslots=/,"", numslots)
|
||||
template_attrs = template_attrs escape_chars($0) " "
|
||||
continue
|
||||
}
|
||||
if($0 ~/net=/) {
|
||||
|
|
@ -112,18 +113,22 @@ FNR==1{
|
|||
continue
|
||||
}
|
||||
template_attrs = template_attrs escape_chars($0) " "
|
||||
save = $0
|
||||
|
||||
|
||||
#### put into "extra" all attributes that are meaningless for spice netlisting
|
||||
#### put into "extra" all attributes that are meaningless for spice netlisting
|
||||
#### if you need other attributes to filter out , add them below.
|
||||
if($0 ~ /^(device|description|footprint|source|numslots)=/) {
|
||||
attributes = $0
|
||||
sub(/=.*/, "", attributes)
|
||||
if(extra !="") extra = extra " "
|
||||
extra = extra attributes
|
||||
}
|
||||
#### however this will break slotted devices
|
||||
####
|
||||
# if($0 ~ /^(device|description|footprint|source|numslots)=/) {
|
||||
# attributes = $0
|
||||
# sub(/=.*/, "", attributes)
|
||||
# if(extra !="") extra = extra " "
|
||||
# if(extra_pinnumber !="") extra_pinnumber = extra_pinnumber " "
|
||||
# extra = extra attributes
|
||||
# extra_pinnumber = extra_pinnumber "-"
|
||||
# }
|
||||
|
||||
save = $0
|
||||
sub(/^device=/, "type=")
|
||||
if ($0 ~/^value=IO/) { # inconsistency in io-1.sym
|
||||
$0 = "type=IO"
|
||||
|
|
@ -204,13 +209,17 @@ FNR==1{
|
|||
ny1 = -$3/10
|
||||
nx2 = $4/10
|
||||
ny2 = -$5/10
|
||||
if(nx2 < nx1) {xxtmp=nx1;nx1=nx2;nx2=xxtmp;xxtmp=ny1;ny1=ny2;ny2=xxtmp}
|
||||
else if(nx2 == nx1 && ny2 < ny1) {xxtmp=ny1;ny1=ny2;ny2=xxtmp}
|
||||
|
||||
propstring = ""
|
||||
ret = getline
|
||||
if($0 == "{") {
|
||||
getline
|
||||
while($0 !="}") {
|
||||
if($0 ~/^T/) {
|
||||
# do nothing for now
|
||||
tx = $2/10
|
||||
ty = -$3/10
|
||||
} else {
|
||||
if($0 ~/netname=/) sub(/netname=/, "lab=")
|
||||
propstring = propstring $0 " "
|
||||
|
|
@ -223,7 +232,20 @@ FNR==1{
|
|||
}
|
||||
wires = wires "N " nx1 " " ny1 " " nx2 " " ny2 " {" propstring "}\n"
|
||||
if(propstring!="") {
|
||||
wires = wires "C {lab_wire.sym} " (nx1+nx2)/2 " " (ny1+ny2)/2 " 0 0 {" propstring "}\n"
|
||||
|
||||
if(ny1 == ny2) { # horizontal wire
|
||||
ty = ny1
|
||||
if(tx < nx1) tx = nx1
|
||||
if(tx > nx2) tx = nx2
|
||||
} else if(nx1 == nx2) { # vertical line
|
||||
tx = nx1
|
||||
if(ty < ny1) ty = ny1
|
||||
if(ty > ny2) ty = ny2
|
||||
} else { # oblique line
|
||||
tx = (nx1+nx2)/2
|
||||
ty = (ny1+ny2)/2
|
||||
}
|
||||
wires = wires "C {lab_wire.sym} " tx " " ty " 0 1 {" propstring "}\n"
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -415,12 +437,14 @@ function print_header()
|
|||
extra_pinnumber = extra_pinnumber pinnumber
|
||||
extra_format = extra_format "@" netname
|
||||
}
|
||||
if(extra) {
|
||||
extra = "extra=\"" extra "\""
|
||||
extra_pinnumber = "extra_pinnumber=\"" extra_pinnumber "\""
|
||||
}
|
||||
|
||||
}
|
||||
if(extra) {
|
||||
extra = "extra=\"" extra "\""
|
||||
}
|
||||
if(extra_pinnumber) {
|
||||
extra_pinnumber = "extra_pinnumber=\"" extra_pinnumber "\""
|
||||
}
|
||||
|
||||
if(pin == 1) spice_attrs = tedax_attrs=""
|
||||
else if(pin == 2) {
|
||||
|
|
@ -450,8 +474,11 @@ function print_header()
|
|||
print "K {" global_attrs template_attrs tedax_attrs spice_attrs
|
||||
if(extra) {
|
||||
print extra
|
||||
}
|
||||
if(extra_pinnumber) {
|
||||
print extra_pinnumber
|
||||
}
|
||||
dbg("extra=" extra)
|
||||
print "}"
|
||||
} else {
|
||||
print "K {}"
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
v {xschem version=3.0.0 file_version=1.2}
|
||||
K {type=24Cxx
|
||||
template="device=24Cxx name=U? footprint=DIP8 description=\\"2-wire serial cmos eeprom\\" author=\\"Werner Hoch <werner.hoATgmx.de>\\" documentation=http://www.asec.com.tw/product/data/992/24C01_2.PDF comment=\\"Pin7 can be WP (write protect) too\\" Vcc=Vcc
|
||||
template="device=24Cxx name=U? footprint=DIP8 description=\\"2-wire serial cmos eeprom\\" numslots=0 author=\\"Werner Hoch <werner.hoATgmx.de>\\" documentation=http://www.asec.com.tw/product/data/992/24C01_2.PDF comment=\\"Pin7 can be WP (write protect) too\\" Vcc=Vcc
|
||||
GND=GND
|
||||
"
|
||||
tedax_format="footprint @name @footprint
|
||||
|
|
@ -9,7 +9,7 @@ device @name @device
|
|||
@comptag"
|
||||
format="@name @pinlist @value @Vcc @GND"
|
||||
|
||||
extra="device footprint description Vcc GND"
|
||||
extra="Vcc GND"
|
||||
extra_pinnumber="8 4"
|
||||
}
|
||||
G {}
|
||||
|
|
|
|||
|
|
@ -1,14 +1,12 @@
|
|||
v {xschem version=3.0.0 file_version=1.2}
|
||||
K {type=7414
|
||||
template="slot=1 device=7414 name=U? pins=14 "
|
||||
template="slot=1 numslots=6 device=7414 name=U? pins=14 "
|
||||
tedax_format="footprint @name @footprint
|
||||
value @name @value
|
||||
device @name @device
|
||||
@comptag"
|
||||
format="@name @pinlist @value "
|
||||
|
||||
device
|
||||
|
||||
}
|
||||
G {}
|
||||
V {}
|
||||
|
|
|
|||
|
|
@ -7,8 +7,6 @@ device @name @device
|
|||
@comptag"
|
||||
format="@name @pinlist @value "
|
||||
|
||||
device
|
||||
|
||||
}
|
||||
G {}
|
||||
V {}
|
||||
|
|
|
|||
|
|
@ -131,51 +131,51 @@ device=RESISTOR
|
|||
}
|
||||
|
||||
N 3220 -5490 3220 -5350 {}
|
||||
N 3310 -5440 3220 -5440 {}
|
||||
N 3220 -5440 3310 -5440 {}
|
||||
N 3380 -5380 3380 -5310 {}
|
||||
N 3600 -5360 3380 -5360 {}
|
||||
N 3670 -5250 3670 -5300 {}
|
||||
N 3220 -5580 3220 -5640 {}
|
||||
N 3670 -5420 3670 -5640 {}
|
||||
N 3380 -5500 3380 -5640 {}
|
||||
N 3380 -5360 3600 -5360 {}
|
||||
N 3670 -5300 3670 -5250 {}
|
||||
N 3220 -5640 3220 -5580 {}
|
||||
N 3670 -5640 3670 -5420 {}
|
||||
N 3380 -5640 3380 -5500 {}
|
||||
N 3670 -5160 3670 -5140 {}
|
||||
N 3220 -5140 3220 -5260 {}
|
||||
N 3220 -5260 3220 -5140 {}
|
||||
N 3380 -5220 3380 -5140 {}
|
||||
N 3750 -5250 3750 -5270 {}
|
||||
N 3750 -5270 3670 -5270 {}
|
||||
N 3750 -5270 3750 -5250 {}
|
||||
N 3670 -5270 3750 -5270 {}
|
||||
N 3750 -5160 3750 -5140 {}
|
||||
N 2770 -5410 2750 -5410 {}
|
||||
N 2750 -5410 2770 -5410 {}
|
||||
N 2750 -5410 2750 -5350 {lab=Vsource }
|
||||
C {lab_wire.sym} 2750 -5380 0 0 {lab=Vsource }
|
||||
N 2750 -5200 2750 -5230 {}
|
||||
C {lab_wire.sym} 2750 -5410 0 1 {lab=Vsource }
|
||||
N 2750 -5230 2750 -5200 {}
|
||||
N 4080 -5130 4080 -5080 {}
|
||||
N 4220 -5360 4220 -5390 {}
|
||||
N 4220 -5390 4220 -5360 {}
|
||||
N 2860 -5410 2900 -5410 {lab=Vin }
|
||||
C {lab_wire.sym} 2880 -5410 0 0 {lab=Vin }
|
||||
C {lab_wire.sym} 2860 -5410 0 1 {lab=Vin }
|
||||
N 4200 -5640 4250 -5640 {lab=Vout }
|
||||
C {lab_wire.sym} 4225 -5640 0 0 {lab=Vout }
|
||||
N 4220 -5480 4220 -5640 {}
|
||||
C {lab_wire.sym} 4250 -5640 0 1 {lab=Vout }
|
||||
N 4220 -5640 4220 -5480 {}
|
||||
N 3220 -5640 3760 -5640 {}
|
||||
N 4080 -5550 4080 -5640 {}
|
||||
N 4080 -5640 4080 -5550 {}
|
||||
N 4080 -5460 4080 -5390 {}
|
||||
N 4080 -5300 4080 -5250 {}
|
||||
N 3180 -5410 3220 -5410 {}
|
||||
N 2990 -5410 3090 -5410 {}
|
||||
N 3850 -5640 4110 -5640 {}
|
||||
N 2950 -5110 2950 -5140 {}
|
||||
N 2950 -5140 2950 -5110 {}
|
||||
N 2950 -5140 3090 -5140 {}
|
||||
N 3210 -5140 3800 -5140 {}
|
||||
N 3890 -5140 4000 -5140 {}
|
||||
N 4000 -5140 4000 -5110 {}
|
||||
N 3910 -5330 3910 -5640 {}
|
||||
N 3910 -5640 3910 -5330 {}
|
||||
N 3910 -5240 3910 -5140 {}
|
||||
N 3040 -5320 3040 -5410 {}
|
||||
N 3040 -5410 3040 -5320 {}
|
||||
N 3040 -5230 3040 -5140 {}
|
||||
N 3210 -5070 3210 -5140 {}
|
||||
N 3190 -5090 3190 -5140 {}
|
||||
N 3190 -5090 3070 -5090 {}
|
||||
N 3210 -5140 3210 -5070 {}
|
||||
N 3190 -5140 3190 -5090 {}
|
||||
N 3070 -5090 3190 -5090 {}
|
||||
N 3070 -5090 3070 -5070 {}
|
||||
N 3070 -5070 3090 -5070 {}
|
||||
N 3180 -5070 3210 -5070 {}
|
||||
N 3190 -5140 3180 -5140 {}
|
||||
N 3180 -5140 3190 -5140 {}
|
||||
|
||||
|
|
|
|||
|
|
@ -76,14 +76,14 @@ N 6450 -5110 6450 -5090 {}
|
|||
N 6450 -5090 6600 -5090 {}
|
||||
N 6300 -5060 6300 -4950 {}
|
||||
N 6300 -4950 6600 -4950 {}
|
||||
N 6600 -4900 6600 -4980 {}
|
||||
N 6600 -4980 6600 -4900 {}
|
||||
N 6260 -5250 6540 -5250 {}
|
||||
N 6030 -5250 6170 -5250 {}
|
||||
N 6130 -5400 6340 -5400 {}
|
||||
N 6600 -5590 6600 -5300 {}
|
||||
N 6430 -5400 6600 -5400 {}
|
||||
N 6430 -5530 6600 -5530 {}
|
||||
N 6340 -5530 6130 -5530 {}
|
||||
N 6130 -5250 6130 -5530 {}
|
||||
N 6600 -5680 6600 -5740 {}
|
||||
N 6130 -5530 6340 -5530 {}
|
||||
N 6130 -5530 6130 -5250 {}
|
||||
N 6600 -5740 6600 -5680 {}
|
||||
|
||||
|
|
|
|||
|
|
@ -76,14 +76,14 @@ N 6450 -5110 6450 -5090 {}
|
|||
N 6450 -5090 6600 -5090 {}
|
||||
N 6300 -5060 6300 -4950 {}
|
||||
N 6300 -4950 6600 -4950 {}
|
||||
N 6600 -4900 6600 -4980 {}
|
||||
N 6600 -4980 6600 -4900 {}
|
||||
N 6260 -5250 6540 -5250 {}
|
||||
N 6030 -5250 6170 -5250 {}
|
||||
N 6130 -5400 6340 -5400 {}
|
||||
N 6600 -5590 6600 -5300 {}
|
||||
N 6430 -5400 6600 -5400 {}
|
||||
N 6430 -5530 6600 -5530 {}
|
||||
N 6340 -5530 6130 -5530 {}
|
||||
N 6130 -5250 6130 -5530 {}
|
||||
N 6600 -5680 6600 -5740 {}
|
||||
N 6130 -5530 6340 -5530 {}
|
||||
N 6130 -5530 6130 -5250 {}
|
||||
N 6600 -5740 6600 -5680 {}
|
||||
|
||||
|
|
|
|||
|
|
@ -7,8 +7,6 @@ device @name @device
|
|||
@comptag"
|
||||
format="@name @pinlist @value "
|
||||
|
||||
device
|
||||
|
||||
}
|
||||
G {}
|
||||
V {}
|
||||
|
|
|
|||
|
|
@ -130,9 +130,9 @@ symversion=0.1
|
|||
}
|
||||
|
||||
N 3250 -4920 3250 -4880 {}
|
||||
N 3350 -4880 3350 -4910 {}
|
||||
N 3930 -5410 3790 -5410 {lab=VColl2 }
|
||||
C {lab_wire.sym} 3860 -5410 0 0 {lab=VColl2 }
|
||||
N 3350 -4910 3350 -4880 {}
|
||||
N 3790 -5410 3930 -5410 {lab=VColl2 }
|
||||
C {lab_wire.sym} 3850 -5410 0 1 {lab=VColl2 }
|
||||
N 4070 -5410 4070 -5310 {}
|
||||
N 3790 -5570 3790 -5550 {}
|
||||
N 4100 -5010 4100 -4990 {}
|
||||
|
|
@ -144,33 +144,33 @@ N 3350 -4790 3350 -4770 {}
|
|||
N 4070 -5220 4070 -5150 {}
|
||||
N 4100 -4870 4100 -4850 {}
|
||||
N 4020 -5410 4130 -5410 {lab=Vout }
|
||||
C {lab_wire.sym} 4075 -5410 0 0 {lab=Vout }
|
||||
C {lab_wire.sym} 4130 -5410 0 1 {lab=Vout }
|
||||
N 2700 -4970 2810 -4970 {lab=Vin }
|
||||
C {lab_wire.sym} 2755 -4970 0 0 {lab=Vin }
|
||||
C {lab_wire.sym} 2700 -4970 0 1 {lab=Vin }
|
||||
N 3100 -4990 3100 -4970 {}
|
||||
N 3150 -4910 3150 -4970 {}
|
||||
N 3150 -4970 3150 -4910 {}
|
||||
N 2900 -4970 2940 -4970 {}
|
||||
N 3790 -5360 3790 -5460 {}
|
||||
N 3100 -5080 3100 -5100 {}
|
||||
N 3790 -4920 3790 -4950 {}
|
||||
N 3790 -5040 3790 -5260 {}
|
||||
N 3250 -5020 3250 -5350 {}
|
||||
N 3250 -5440 3250 -5480 {}
|
||||
N 3790 -5460 3790 -5360 {}
|
||||
N 3100 -5100 3100 -5080 {}
|
||||
N 3790 -4950 3790 -4920 {}
|
||||
N 3790 -5260 3790 -5040 {}
|
||||
N 3250 -5350 3250 -5020 {}
|
||||
N 3250 -5480 3250 -5440 {}
|
||||
N 3030 -4970 3190 -4970 {lab=Vbase1 }
|
||||
C {lab_wire.sym} 3110 -4970 0 0 {lab=Vbase1 }
|
||||
C {lab_wire.sym} 3100 -4970 0 1 {lab=Vbase1 }
|
||||
N 3900 -4950 3900 -4920 {}
|
||||
N 3900 -5040 3900 -5100 {}
|
||||
N 3900 -5100 3790 -5100 {lab=Vem2 }
|
||||
C {lab_wire.sym} 3845 -5100 0 0 {lab=Vem2 }
|
||||
N 3900 -5100 3900 -5040 {}
|
||||
N 3790 -5100 3900 -5100 {lab=Vem2 }
|
||||
C {lab_wire.sym} 3800 -5100 0 1 {lab=Vem2 }
|
||||
N 3250 -4910 3350 -4910 {lab=Vem1 }
|
||||
C {lab_wire.sym} 3300 -4910 0 0 {lab=Vem1 }
|
||||
C {lab_wire.sym} 3270 -4910 0 1 {lab=Vem1 }
|
||||
N 3590 -5310 3730 -5310 {lab=Vbase2 }
|
||||
C {lab_wire.sym} 3660 -5310 0 0 {lab=Vbase2 }
|
||||
C {lab_wire.sym} 3690 -5310 0 1 {lab=Vbase2 }
|
||||
N 3250 -5310 3330 -5310 {lab=Vcoll1 }
|
||||
C {lab_wire.sym} 3290 -5310 0 0 {lab=Vcoll1 }
|
||||
C {lab_wire.sym} 3300 -5310 0 1 {lab=Vcoll1 }
|
||||
N 3630 -5160 3630 -5110 {}
|
||||
N 3630 -5250 3630 -5310 {}
|
||||
N 3660 -5560 3660 -5580 {}
|
||||
N 3500 -5310 3420 -5310 {}
|
||||
N 3660 -5310 3660 -5470 {}
|
||||
N 3630 -5310 3630 -5250 {}
|
||||
N 3660 -5580 3660 -5560 {}
|
||||
N 3420 -5310 3500 -5310 {}
|
||||
N 3660 -5470 3660 -5310 {}
|
||||
|
||||
|
|
|
|||
|
|
@ -1,14 +1,12 @@
|
|||
v {xschem version=3.0.0 file_version=1.2}
|
||||
K {type=CAPACITOR
|
||||
template="device=CAPACITOR name=C? description=capacitor symversion=0.1 "
|
||||
template="device=CAPACITOR name=C? description=capacitor numslots=0 symversion=0.1 "
|
||||
tedax_format="footprint @name @footprint
|
||||
value @name @value
|
||||
device @name @device
|
||||
@comptag"
|
||||
format="@name @pinlist @value "
|
||||
|
||||
device description
|
||||
|
||||
}
|
||||
G {}
|
||||
V {}
|
||||
|
|
|
|||
|
|
@ -1,14 +1,12 @@
|
|||
v {xschem version=3.0.0 file_version=1.2}
|
||||
K {type=POLARIZED_CAPACITOR
|
||||
template="device=POLARIZED_CAPACITOR name=C? description=\\"polarized capacitor\\" symversion=0.1 "
|
||||
template="device=POLARIZED_CAPACITOR name=C? description=\\"polarized capacitor\\" numslots=0 symversion=0.1 "
|
||||
tedax_format="footprint @name @footprint
|
||||
value @name @value
|
||||
device @name @device
|
||||
@comptag"
|
||||
format="@name @pinlist @value "
|
||||
|
||||
device description
|
||||
|
||||
}
|
||||
G {}
|
||||
V {}
|
||||
|
|
|
|||
|
|
@ -7,8 +7,6 @@ device @name @device
|
|||
@comptag"
|
||||
format="@name @pinlist @value "
|
||||
|
||||
device
|
||||
|
||||
}
|
||||
G {}
|
||||
V {}
|
||||
|
|
|
|||
|
|
@ -7,8 +7,6 @@ device @name @device
|
|||
@comptag"
|
||||
format="@name @pinlist @value "
|
||||
|
||||
device
|
||||
|
||||
}
|
||||
G {}
|
||||
V {}
|
||||
|
|
|
|||
|
|
@ -7,8 +7,6 @@ device @name @device
|
|||
@comptag"
|
||||
format="@name @pinlist @value "
|
||||
|
||||
device
|
||||
|
||||
}
|
||||
G {}
|
||||
V {}
|
||||
|
|
|
|||
|
|
@ -1,14 +1,12 @@
|
|||
v {xschem version=3.0.0 file_version=1.2}
|
||||
K {type=CRYSTAL
|
||||
template="device=CRYSTAL name=U? description=crystal symversion=0.1 "
|
||||
template="device=CRYSTAL name=U? description=crystal numslots=0 symversion=0.1 "
|
||||
tedax_format="footprint @name @footprint
|
||||
value @name @value
|
||||
device @name @device
|
||||
@comptag"
|
||||
format="@name @pinlist @value "
|
||||
|
||||
device description
|
||||
|
||||
}
|
||||
G {}
|
||||
V {}
|
||||
|
|
|
|||
|
|
@ -7,8 +7,6 @@ device @name @device
|
|||
@comptag"
|
||||
format="@name @pinlist @value "
|
||||
|
||||
device footprint
|
||||
|
||||
}
|
||||
G {}
|
||||
V {}
|
||||
|
|
|
|||
|
|
@ -7,8 +7,6 @@ device @name @device
|
|||
@comptag"
|
||||
format="@name @pinlist @value "
|
||||
|
||||
device
|
||||
|
||||
}
|
||||
G {}
|
||||
V {}
|
||||
|
|
|
|||
|
|
@ -38,20 +38,20 @@ C {gnd-1.sym} 6190 -4800 0 0 {}
|
|||
C {copyleft.sym} 4690 -4040 0 0 {}
|
||||
|
||||
N 5780 -5140 5870 -5140 {}
|
||||
N 5870 -4850 5870 -5140 {}
|
||||
N 5870 -5140 5870 -4850 {}
|
||||
N 5780 -5170 5900 -5170 {}
|
||||
N 5780 -5200 5940 -5200 {}
|
||||
N 5780 -5110 5800 -5110 {}
|
||||
N 5800 -5110 5800 -5090 {}
|
||||
N 5990 -4960 5970 -4960 {}
|
||||
N 5970 -4960 5990 -4960 {}
|
||||
N 5970 -4960 5970 -4830 {}
|
||||
N 5990 -4890 5970 -4890 {}
|
||||
N 6200 -4830 6200 -4930 {}
|
||||
N 5970 -4890 5990 -4890 {}
|
||||
N 6200 -4930 6200 -4830 {}
|
||||
N 6180 -4930 6200 -4930 {}
|
||||
N 6180 -4850 6200 -4850 {}
|
||||
N 5900 -5170 5900 -4930 {}
|
||||
N 5870 -4850 5990 -4850 {}
|
||||
N 5900 -4930 5990 -4930 {}
|
||||
N 5900 -4930 5710 -4930 {}
|
||||
N 5870 -4850 5710 -4850 {}
|
||||
N 5710 -4930 5900 -4930 {}
|
||||
N 5710 -4850 5870 -4850 {}
|
||||
|
||||
|
|
|
|||
|
|
@ -7,8 +7,6 @@ device @name @device
|
|||
@comptag"
|
||||
format="@name @pinlist @value "
|
||||
|
||||
device
|
||||
|
||||
}
|
||||
G {}
|
||||
V {}
|
||||
|
|
|
|||
|
|
@ -128,24 +128,24 @@ N 5500 -5220 5690 -5220 {}
|
|||
N 5420 -5530 5560 -5530 {}
|
||||
N 5560 -5530 5560 -5250 {}
|
||||
N 5560 -5250 5690 -5250 {}
|
||||
N 5690 -5160 5500 -5160 {}
|
||||
N 5500 -5160 5690 -5160 {}
|
||||
N 5500 -5160 5500 -5020 {}
|
||||
N 5500 -5020 5420 -5020 {}
|
||||
N 5690 -5130 5560 -5130 {}
|
||||
N 5420 -5020 5500 -5020 {}
|
||||
N 5560 -5130 5690 -5130 {}
|
||||
N 5560 -5130 5560 -4850 {}
|
||||
N 5560 -4850 5420 -4850 {}
|
||||
N 5690 -5100 5620 -5100 {}
|
||||
N 5420 -4850 5560 -4850 {}
|
||||
N 5620 -5100 5690 -5100 {}
|
||||
N 5620 -5100 5620 -5050 {}
|
||||
N 5690 -5280 5620 -5280 {}
|
||||
N 5620 -5280 5620 -5610 {}
|
||||
N 5620 -5610 4600 -5610 {}
|
||||
N 5620 -5280 5690 -5280 {}
|
||||
N 5620 -5610 5620 -5280 {}
|
||||
N 4600 -5610 5620 -5610 {}
|
||||
N 4600 -5530 5300 -5530 {}
|
||||
N 4600 -5370 5300 -5370 {}
|
||||
N 4600 -5190 5300 -5190 {}
|
||||
N 4600 -5020 5300 -5020 {}
|
||||
N 4600 -4850 5300 -4850 {}
|
||||
N 5900 -5720 5900 -5760 {}
|
||||
N 5900 -5590 5900 -5630 {}
|
||||
N 5900 -5760 5900 -5720 {}
|
||||
N 5900 -5630 5900 -5590 {}
|
||||
N 4740 -5670 4740 -4850 {}
|
||||
N 4870 -5670 4870 -5020 {}
|
||||
N 5000 -5670 5000 -5190 {}
|
||||
|
|
|
|||
|
|
@ -7,8 +7,6 @@ device @name @device
|
|||
@comptag"
|
||||
format="@name @pinlist @value "
|
||||
|
||||
device
|
||||
|
||||
}
|
||||
G {}
|
||||
V {}
|
||||
|
|
|
|||
|
|
@ -88,32 +88,32 @@ device=OUTPUT
|
|||
C {3.3V-plus-1.sym} 6390 -5370 0 0 {}
|
||||
|
||||
N 6310 -5180 6430 -5180 {}
|
||||
N 6430 -5180 6430 -5190 {}
|
||||
N 6430 -5190 6430 -5180 {}
|
||||
N 6350 -5180 6350 -5140 {}
|
||||
N 5890 -5130 5890 -5240 {}
|
||||
N 5890 -5240 5890 -5130 {}
|
||||
N 5800 -5000 6350 -5000 {}
|
||||
N 6350 -5000 6350 -5050 {}
|
||||
N 5890 -5000 5890 -5040 {}
|
||||
N 6350 -5050 6350 -5000 {}
|
||||
N 5890 -5040 5890 -5000 {}
|
||||
N 6160 -5100 6160 -5000 {}
|
||||
N 6210 -5100 6210 -5000 {}
|
||||
N 6190 -4950 6190 -5000 {}
|
||||
N 6100 -5240 5670 -5240 {}
|
||||
N 6100 -5280 6000 -5280 {}
|
||||
N 5580 -5170 5530 -5170 {}
|
||||
N 5580 -5240 5530 -5240 {}
|
||||
N 5800 -5000 5800 -5040 {}
|
||||
N 5800 -5130 5800 -5240 {}
|
||||
N 6190 -5000 6190 -4950 {}
|
||||
N 5670 -5240 6100 -5240 {}
|
||||
N 6000 -5280 6100 -5280 {}
|
||||
N 5530 -5170 5580 -5170 {}
|
||||
N 5530 -5240 5580 -5240 {}
|
||||
N 5800 -5040 5800 -5000 {}
|
||||
N 5800 -5240 5800 -5130 {}
|
||||
N 5700 -5240 5700 -5170 {}
|
||||
N 5700 -5170 5670 -5170 {}
|
||||
N 5670 -5170 5700 -5170 {}
|
||||
N 6230 -5100 6230 -5000 {}
|
||||
N 6100 -5170 6080 -5170 {}
|
||||
N 6080 -5170 6100 -5170 {}
|
||||
N 6080 -5170 6080 -5130 {}
|
||||
N 6080 -5130 6000 -5130 {}
|
||||
N 6000 -5120 6000 -5140 {}
|
||||
N 6000 -5130 6080 -5130 {}
|
||||
N 6000 -5140 6000 -5120 {}
|
||||
N 6000 -5030 6000 -5000 {}
|
||||
N 6000 -5230 6000 -5240 {}
|
||||
N 6000 -5240 6000 -5280 {}
|
||||
N 6000 -5240 6000 -5230 {}
|
||||
N 6000 -5280 6000 -5240 {}
|
||||
N 6310 -5240 6500 -5240 {}
|
||||
N 6410 -5260 6410 -5240 {}
|
||||
N 6410 -5350 6410 -5370 {}
|
||||
N 6410 -5370 6410 -5350 {}
|
||||
|
||||
|
|
|
|||
|
|
@ -7,8 +7,6 @@ device @name @device
|
|||
@comptag"
|
||||
format="@name @pinlist @value "
|
||||
|
||||
device
|
||||
|
||||
}
|
||||
G {}
|
||||
V {}
|
||||
|
|
|
|||
|
|
@ -230,48 +230,48 @@ device=HEADER20
|
|||
|
||||
N 5580 -5420 5590 -5420 {}
|
||||
N 5480 -5420 5490 -5420 {}
|
||||
N 5500 -5330 5490 -5330 {}
|
||||
N 5490 -5330 5500 -5330 {}
|
||||
N 5570 -5330 5580 -5330 {}
|
||||
N 5490 -5280 5490 -5420 {}
|
||||
N 5580 -5280 5580 -5420 {}
|
||||
N 5380 -5410 5380 -5420 {}
|
||||
N 5490 -5420 5490 -5280 {}
|
||||
N 5580 -5420 5580 -5280 {}
|
||||
N 5380 -5420 5380 -5410 {}
|
||||
N 5380 -5420 5390 -5420 {}
|
||||
N 5680 -5420 5690 -5420 {}
|
||||
N 5690 -5420 5690 -5410 {}
|
||||
N 5560 -4030 5560 -3990 {}
|
||||
N 5140 -3960 5140 -4030 {}
|
||||
N 5210 -3990 5210 -4030 {}
|
||||
N 5250 -3990 5250 -4030 {}
|
||||
N 5290 -3990 5290 -4030 {}
|
||||
N 5330 -3990 5330 -4030 {}
|
||||
N 5370 -3990 5370 -4030 {}
|
||||
N 5410 -3990 5410 -4030 {}
|
||||
N 5480 -3990 5480 -4030 {}
|
||||
N 5520 -3990 5520 -4030 {}
|
||||
N 5140 -4030 5140 -3960 {}
|
||||
N 5210 -4030 5210 -3990 {}
|
||||
N 5250 -4030 5250 -3990 {}
|
||||
N 5290 -4030 5290 -3990 {}
|
||||
N 5330 -4030 5330 -3990 {}
|
||||
N 5370 -4030 5370 -3990 {}
|
||||
N 5410 -4030 5410 -3990 {}
|
||||
N 5480 -4030 5480 -3990 {}
|
||||
N 5520 -4030 5520 -3990 {}
|
||||
N 5600 -4030 5600 -3920 {}
|
||||
N 5680 -4030 5680 -3990 {}
|
||||
N 5810 -3920 5900 -3920 {}
|
||||
N 5900 -3920 5900 -3990 {}
|
||||
N 5900 -3990 5900 -3920 {}
|
||||
N 4760 -5100 5040 -5100 {}
|
||||
N 5260 -5280 5260 -5300 {}
|
||||
N 5260 -5300 5260 -5280 {}
|
||||
N 5260 -5290 5380 -5290 {}
|
||||
N 5380 -5290 5380 -5280 {}
|
||||
N 5340 -5280 5340 -5290 {}
|
||||
N 5300 -5280 5300 -5290 {}
|
||||
N 4770 -4410 4770 -4430 {}
|
||||
N 5340 -5290 5340 -5280 {}
|
||||
N 5300 -5290 5300 -5280 {}
|
||||
N 4770 -4430 4770 -4410 {}
|
||||
N 4770 -4430 4850 -4430 {}
|
||||
N 4850 -4430 4850 -4410 {}
|
||||
N 4810 -4450 4810 -4430 {}
|
||||
N 4730 -4290 4940 -4290 {}
|
||||
N 4770 -4320 4770 -4290 {}
|
||||
N 4850 -4320 4850 -4270 {}
|
||||
N 4940 -4290 4940 -4320 {}
|
||||
N 4940 -4320 4940 -4290 {}
|
||||
N 4940 -4320 5040 -4320 {}
|
||||
N 4960 -4270 4960 -4280 {}
|
||||
N 4960 -4280 4960 -4270 {}
|
||||
N 4960 -4280 5040 -4280 {}
|
||||
N 4600 -4310 4590 -4310 {}
|
||||
N 4590 -4310 4600 -4310 {}
|
||||
N 4590 -4310 4590 -4270 {}
|
||||
N 4600 -4290 4590 -4290 {}
|
||||
N 4590 -4290 4600 -4290 {}
|
||||
N 5810 -5130 5960 -5130 {}
|
||||
N 5810 -5090 5880 -5090 {}
|
||||
N 4610 -4940 4670 -4940 {}
|
||||
|
|
@ -280,34 +280,34 @@ N 4760 -5020 4790 -5020 {}
|
|||
N 4790 -5020 4790 -5000 {}
|
||||
N 4790 -5000 5040 -5000 {}
|
||||
N 4760 -4940 4790 -4940 {}
|
||||
N 4790 -4940 4790 -4960 {}
|
||||
N 4790 -4960 4790 -4940 {}
|
||||
N 4790 -4960 5040 -4960 {}
|
||||
N 4670 -5100 4650 -5100 {}
|
||||
N 4650 -5100 4670 -5100 {}
|
||||
N 4650 -5100 4650 -4940 {}
|
||||
N 5810 -4580 6340 -4580 {}
|
||||
N 5810 -4540 6340 -4540 {}
|
||||
N 5810 -4500 6340 -4500 {}
|
||||
N 5810 -4460 6340 -4460 {}
|
||||
N 5810 -4420 6340 -4420 {}
|
||||
N 6140 -4380 5810 -4380 {}
|
||||
N 5810 -4380 6140 -4380 {}
|
||||
N 5810 -4340 6180 -4340 {}
|
||||
N 6220 -4300 5810 -4300 {}
|
||||
N 5980 -4780 5810 -4780 {}
|
||||
N 5810 -4300 6220 -4300 {}
|
||||
N 5810 -4780 5980 -4780 {}
|
||||
N 5810 -4820 6020 -4820 {}
|
||||
N 5810 -4860 6060 -4860 {}
|
||||
N 5810 -4900 6100 -4900 {}
|
||||
N 5810 -4940 6140 -4940 {}
|
||||
N 5810 -4980 6180 -4980 {}
|
||||
N 6220 -5020 5810 -5020 {}
|
||||
N 5040 -5160 5030 -5160 {}
|
||||
N 5030 -5160 5030 -5360 {}
|
||||
N 5030 -5340 4870 -5340 {}
|
||||
N 5810 -5020 6220 -5020 {}
|
||||
N 5030 -5160 5040 -5160 {}
|
||||
N 5030 -5360 5030 -5160 {}
|
||||
N 4870 -5340 5030 -5340 {}
|
||||
N 4870 -5340 4870 -5310 {}
|
||||
N 4970 -5310 4970 -5340 {}
|
||||
N 4970 -5340 4970 -5310 {}
|
||||
N 4870 -5220 4870 -5210 {}
|
||||
N 4870 -5210 4970 -5210 {}
|
||||
N 4970 -5210 4970 -5220 {}
|
||||
N 4920 -5200 4920 -5210 {}
|
||||
N 4970 -5220 4970 -5210 {}
|
||||
N 4920 -5210 4920 -5200 {}
|
||||
N 4750 -5300 4800 -5300 {}
|
||||
N 4800 -5300 4800 -5060 {}
|
||||
N 4800 -5060 5040 -5060 {}
|
||||
|
|
@ -315,60 +315,60 @@ N 5140 -3990 5720 -3990 {}
|
|||
N 5720 -4030 5720 -3990 {}
|
||||
N 5600 -3920 5720 -3920 {}
|
||||
N 5810 -5170 6080 -5170 {}
|
||||
N 5960 -5130 5960 -5200 {}
|
||||
N 5880 -5090 5880 -5200 {}
|
||||
N 5960 -5200 5960 -5130 {}
|
||||
N 5880 -5200 5880 -5090 {}
|
||||
N 5880 -5310 5880 -5290 {}
|
||||
N 5960 -5310 5960 -5290 {}
|
||||
N 5040 -4560 4730 -4560 {}
|
||||
N 4730 -4560 5040 -4560 {}
|
||||
N 5020 -4500 5040 -4500 {}
|
||||
N 5020 -4380 5040 -4380 {}
|
||||
N 4920 -4510 4920 -4380 {}
|
||||
N 4920 -4380 4930 -4380 {}
|
||||
N 4930 -4500 4920 -4500 {}
|
||||
N 4730 -4540 4730 -4580 {}
|
||||
N 4920 -4500 4930 -4500 {}
|
||||
N 4730 -4580 4730 -4540 {}
|
||||
N 4730 -4680 4730 -4670 {}
|
||||
N 4730 -4450 4730 -4440 {}
|
||||
N 4500 -4310 4500 -4350 {}
|
||||
N 4500 -4350 4500 -4310 {}
|
||||
N 4500 -4450 4500 -4440 {}
|
||||
N 4500 -4220 4500 -4210 {}
|
||||
N 4600 -4330 4500 -4330 {}
|
||||
N 4500 -4330 4600 -4330 {}
|
||||
N 5810 -4740 5940 -4740 {}
|
||||
N 5940 -4580 5940 -4590 {}
|
||||
N 5980 -4540 5980 -4590 {}
|
||||
N 6020 -4500 6020 -4590 {}
|
||||
N 6060 -4460 6060 -4590 {}
|
||||
N 6100 -4420 6100 -4590 {}
|
||||
N 6140 -4380 6140 -4590 {}
|
||||
N 6180 -4340 6180 -4590 {}
|
||||
N 6220 -4300 6220 -4590 {}
|
||||
N 5940 -4590 5940 -4580 {}
|
||||
N 5980 -4590 5980 -4540 {}
|
||||
N 6020 -4590 6020 -4500 {}
|
||||
N 6060 -4590 6060 -4460 {}
|
||||
N 6100 -4590 6100 -4420 {}
|
||||
N 6140 -4590 6140 -4380 {}
|
||||
N 6180 -4590 6180 -4340 {}
|
||||
N 6220 -4590 6220 -4300 {}
|
||||
N 5940 -4740 5940 -4730 {}
|
||||
N 5980 -4780 5980 -4730 {}
|
||||
N 6020 -4820 6020 -4730 {}
|
||||
N 6060 -4860 6060 -4730 {}
|
||||
N 6100 -4900 6100 -4730 {}
|
||||
N 6140 -4730 6140 -4940 {}
|
||||
N 6140 -4940 6140 -4730 {}
|
||||
N 6180 -4980 6180 -4730 {}
|
||||
N 6220 -5020 6220 -4730 {}
|
||||
N 5810 -4240 6260 -4240 {}
|
||||
N 6260 -4240 6260 -4590 {}
|
||||
N 6260 -4590 6260 -4240 {}
|
||||
N 5810 -4200 6300 -4200 {}
|
||||
N 6300 -4200 6300 -4590 {}
|
||||
N 6300 -4730 6300 -4750 {}
|
||||
N 6360 -4730 6360 -4750 {}
|
||||
N 6360 -4750 6300 -4750 {}
|
||||
N 6300 -4590 6300 -4200 {}
|
||||
N 6300 -4750 6300 -4730 {}
|
||||
N 6360 -4750 6360 -4730 {}
|
||||
N 6300 -4750 6360 -4750 {}
|
||||
N 6260 -4770 6260 -4730 {}
|
||||
N 6170 -5170 6200 -5170 {}
|
||||
N 6200 -5170 6200 -5160 {}
|
||||
N 6300 -5250 6600 -5250 {}
|
||||
N 6600 -5250 6600 -5270 {}
|
||||
N 6600 -5270 6600 -5250 {}
|
||||
N 6300 -5380 6600 -5380 {}
|
||||
N 6600 -5380 6600 -5360 {}
|
||||
N 6300 -5360 6300 -5400 {}
|
||||
N 6300 -5230 6300 -5270 {}
|
||||
N 6400 -5250 6400 -5270 {}
|
||||
N 6500 -5250 6500 -5270 {}
|
||||
N 6400 -5360 6400 -5380 {}
|
||||
N 6500 -5360 6500 -5380 {}
|
||||
N 4740 -4270 4730 -4270 {}
|
||||
N 6300 -5400 6300 -5360 {}
|
||||
N 6300 -5270 6300 -5230 {}
|
||||
N 6400 -5270 6400 -5250 {}
|
||||
N 6500 -5270 6500 -5250 {}
|
||||
N 6400 -5380 6400 -5360 {}
|
||||
N 6500 -5380 6500 -5360 {}
|
||||
N 4730 -4270 4740 -4270 {}
|
||||
N 4840 -4270 4960 -4270 {}
|
||||
|
||||
|
|
|
|||
|
|
@ -7,8 +7,6 @@ device @name @device
|
|||
@comptag"
|
||||
format="@name @pinlist @value "
|
||||
|
||||
device
|
||||
|
||||
}
|
||||
G {}
|
||||
V {}
|
||||
|
|
|
|||
|
|
@ -40,27 +40,27 @@ device=none
|
|||
}
|
||||
|
||||
N 5280 -5980 5410 -5980 {lab=tdi_ttl }
|
||||
C {lab_wire.sym} 5345 -5980 0 0 {lab=tdi_ttl }
|
||||
C {lab_wire.sym} 5330 -5980 0 1 {lab=tdi_ttl }
|
||||
N 5280 -5940 5410 -5940 {lab=tdo_ttl }
|
||||
C {lab_wire.sym} 5345 -5940 0 0 {lab=tdo_ttl }
|
||||
C {lab_wire.sym} 5330 -5940 0 1 {lab=tdo_ttl }
|
||||
N 5280 -5900 5410 -5900 {lab=tms_ttl }
|
||||
C {lab_wire.sym} 5345 -5900 0 0 {lab=tms_ttl }
|
||||
C {lab_wire.sym} 5330 -5900 0 1 {lab=tms_ttl }
|
||||
N 5280 -5860 5410 -5860 {lab=tck_ttl }
|
||||
C {lab_wire.sym} 5345 -5860 0 0 {lab=tck_ttl }
|
||||
C {lab_wire.sym} 5330 -5860 0 1 {lab=tck_ttl }
|
||||
N 5280 -5820 5410 -5820 {lab=trst_ttl }
|
||||
C {lab_wire.sym} 5345 -5820 0 0 {lab=trst_ttl }
|
||||
N 5390 -6230 5120 -6230 {}
|
||||
C {lab_wire.sym} 5330 -5820 0 1 {lab=trst_ttl }
|
||||
N 5120 -6230 5390 -6230 {}
|
||||
N 5120 -6230 5120 -6030 {lab=jtag_power }
|
||||
C {lab_wire.sym} 5120 -6130 0 0 {lab=jtag_power }
|
||||
C {lab_wire.sym} 5120 -6120 0 1 {lab=jtag_power }
|
||||
N 5710 -6230 6010 -6230 {}
|
||||
N 6010 -6230 6010 -6030 {lab=usb_power }
|
||||
C {lab_wire.sym} 6010 -6130 0 0 {lab=usb_power }
|
||||
C {lab_wire.sym} 6010 -6120 0 1 {lab=usb_power }
|
||||
N 5730 -5910 5860 -5910 {lab=usb_io+ }
|
||||
C {lab_wire.sym} 5795 -5910 0 0 {lab=usb_io+ }
|
||||
C {lab_wire.sym} 5750 -5910 0 1 {lab=usb_io+ }
|
||||
N 5730 -5880 5860 -5880 {lab=usb_io- }
|
||||
C {lab_wire.sym} 5795 -5880 0 0 {lab=usb_io- }
|
||||
C {lab_wire.sym} 5750 -5880 0 1 {lab=usb_io- }
|
||||
N 5730 -5980 5740 -5980 {}
|
||||
N 5740 -5980 5740 -6190 {lab=pon_reset# }
|
||||
C {lab_wire.sym} 5740 -6085 0 0 {lab=pon_reset# }
|
||||
N 5740 -6190 5710 -6190 {}
|
||||
N 5740 -6190 5740 -5980 {lab=pon_reset# }
|
||||
C {lab_wire.sym} 5740 -6090 0 1 {lab=pon_reset# }
|
||||
N 5710 -6190 5740 -6190 {}
|
||||
|
||||
|
|
|
|||
|
|
@ -7,8 +7,6 @@ device @name @device
|
|||
@comptag"
|
||||
format="@name @pinlist @value "
|
||||
|
||||
device
|
||||
|
||||
}
|
||||
G {}
|
||||
V {}
|
||||
|
|
|
|||
|
|
@ -2,8 +2,6 @@ v {xschem version=3.0.0 file_version=1.2}
|
|||
K {type=ipin
|
||||
template="device=INPUT lab=xxx name=pinlabel "
|
||||
|
||||
device
|
||||
|
||||
}
|
||||
G {}
|
||||
V {}
|
||||
|
|
|
|||
|
|
@ -1,14 +1,12 @@
|
|||
v {xschem version=3.0.0 file_version=1.2}
|
||||
K {type=INDUCTOR
|
||||
template="device=INDUCTOR name=L? description=inductor symversion=0.1 "
|
||||
template="device=INDUCTOR name=L? description=inductor numslots=0 symversion=0.1 "
|
||||
tedax_format="footprint @name @footprint
|
||||
value @name @value
|
||||
device @name @device
|
||||
@comptag"
|
||||
format="@name @pinlist @value "
|
||||
|
||||
device description
|
||||
|
||||
}
|
||||
G {}
|
||||
V {}
|
||||
|
|
|
|||
|
|
@ -7,8 +7,6 @@ device @name @device
|
|||
@comptag"
|
||||
format="@name @pinlist @value "
|
||||
|
||||
device
|
||||
|
||||
}
|
||||
G {}
|
||||
V {}
|
||||
|
|
|
|||
|
|
@ -122,46 +122,46 @@ value=2N4401
|
|||
|
||||
N 5330 -6310 5330 -6150 {}
|
||||
N 5330 -6060 5330 -6000 {}
|
||||
N 5380 -6110 5380 -6160 {}
|
||||
N 5380 -6160 5380 -6110 {}
|
||||
N 5380 -6020 5380 -6000 {}
|
||||
N 5380 -6160 5330 -6160 {}
|
||||
N 5330 -6160 5380 -6160 {}
|
||||
N 5470 -6160 5480 -6160 {}
|
||||
N 5550 -6390 5550 -6210 {}
|
||||
N 5330 -6470 5330 -6400 {}
|
||||
N 6230 -6000 5330 -6000 {}
|
||||
N 5330 -6000 6230 -6000 {}
|
||||
N 5550 -6110 5550 -6000 {}
|
||||
N 5550 -6000 6050 -6000 {}
|
||||
N 5470 -6350 5470 -6330 {}
|
||||
N 5470 -6240 5470 -6160 {}
|
||||
N 6200 -6050 6200 -6000 {}
|
||||
N 6230 -6600 5550 -6600 {}
|
||||
N 5550 -6600 6230 -6600 {}
|
||||
N 5550 -6600 5550 -6480 {}
|
||||
N 6180 -6580 6180 -6600 {}
|
||||
N 6180 -6300 6180 -6490 {}
|
||||
N 6180 -6600 6180 -6580 {}
|
||||
N 6180 -6490 6180 -6300 {}
|
||||
N 6180 -6300 6220 -6300 {}
|
||||
N 5470 -6350 5550 -6350 {}
|
||||
N 6130 -6100 5680 -6100 {}
|
||||
N 5680 -6100 5680 -6160 {}
|
||||
N 6050 -6090 6050 -6100 {}
|
||||
N 5680 -6100 6130 -6100 {}
|
||||
N 5680 -6160 5680 -6100 {}
|
||||
N 6050 -6100 6050 -6090 {}
|
||||
N 6050 -6200 6050 -6100 {}
|
||||
N 6050 -6300 6050 -6480 {}
|
||||
N 6050 -6480 6050 -6300 {}
|
||||
N 5550 -6300 5590 -6300 {}
|
||||
N 5680 -6250 5680 -6360 {}
|
||||
N 5630 -6410 5630 -6480 {}
|
||||
N 5680 -6360 5680 -6250 {}
|
||||
N 5630 -6480 5630 -6410 {}
|
||||
N 5630 -6480 6180 -6480 {}
|
||||
N 5850 -6250 5780 -6250 {}
|
||||
N 6220 -6200 6200 -6200 {}
|
||||
N 5780 -6250 5850 -6250 {}
|
||||
N 6200 -6200 6220 -6200 {}
|
||||
N 6200 -6200 6200 -6150 {}
|
||||
N 5970 -6250 5970 -6210 {}
|
||||
N 5970 -6120 5970 -6100 {}
|
||||
N 5780 -6350 5830 -6350 {}
|
||||
N 5830 -6350 5830 -6210 {}
|
||||
N 5830 -6120 5830 -6100 {}
|
||||
N 6110 -6410 6110 -6600 {}
|
||||
N 6110 -6600 6110 -6410 {}
|
||||
N 6110 -6320 6110 -6000 {}
|
||||
N 5940 -6250 5980 -6250 {}
|
||||
N 5680 -6300 5710 -6300 {}
|
||||
N 5680 -6450 5680 -6480 {}
|
||||
N 5780 -6470 5780 -6480 {}
|
||||
N 5780 -6350 5780 -6380 {}
|
||||
N 5680 -6480 5680 -6450 {}
|
||||
N 5780 -6480 5780 -6470 {}
|
||||
N 5780 -6380 5780 -6350 {}
|
||||
|
||||
|
|
|
|||
|
|
@ -7,8 +7,6 @@ device @name @device
|
|||
@comptag"
|
||||
format="@name @pinlist @value "
|
||||
|
||||
device footprint
|
||||
|
||||
}
|
||||
G {}
|
||||
V {}
|
||||
|
|
|
|||
|
|
@ -2,8 +2,6 @@ v {xschem version=3.0.0 file_version=1.2}
|
|||
K {type=opin
|
||||
template="device=OUTPUT lab=xxx name=pinlabel "
|
||||
|
||||
device
|
||||
|
||||
}
|
||||
G {}
|
||||
V {}
|
||||
|
|
|
|||
|
|
@ -7,8 +7,6 @@ device @name @device
|
|||
@comptag"
|
||||
format="@name @pinlist @value "
|
||||
|
||||
device
|
||||
|
||||
}
|
||||
G {}
|
||||
V {}
|
||||
|
|
|
|||
|
|
@ -7,8 +7,6 @@ device @name @device
|
|||
@comptag"
|
||||
format="@name @pinlist @value "
|
||||
|
||||
device
|
||||
|
||||
}
|
||||
G {}
|
||||
V {}
|
||||
|
|
|
|||
|
|
@ -7,8 +7,6 @@ device @name @device
|
|||
@comptag"
|
||||
format="@name @pinlist @value "
|
||||
|
||||
device
|
||||
|
||||
}
|
||||
G {}
|
||||
V {}
|
||||
|
|
|
|||
|
|
@ -7,8 +7,6 @@ device @name @device
|
|||
@comptag"
|
||||
format="@name @pinlist @value "
|
||||
|
||||
device footprint
|
||||
|
||||
}
|
||||
G {}
|
||||
V {}
|
||||
|
|
|
|||
|
|
@ -7,8 +7,6 @@ device @name @device
|
|||
@comptag"
|
||||
format="@name @pinlist @value "
|
||||
|
||||
device
|
||||
|
||||
}
|
||||
G {}
|
||||
V {}
|
||||
|
|
|
|||
|
|
@ -7,8 +7,6 @@ device @name @device
|
|||
@comptag"
|
||||
format="@name @pinlist @value "
|
||||
|
||||
device
|
||||
|
||||
}
|
||||
G {}
|
||||
V {}
|
||||
|
|
|
|||
|
|
@ -7,8 +7,6 @@ device @name @device
|
|||
@comptag"
|
||||
format="@name @pinlist @value "
|
||||
|
||||
device
|
||||
|
||||
}
|
||||
G {}
|
||||
V {}
|
||||
|
|
|
|||
|
|
@ -7,8 +7,6 @@ device @name @device
|
|||
@comptag"
|
||||
format="@name @pinlist @value "
|
||||
|
||||
device
|
||||
|
||||
}
|
||||
G {}
|
||||
V {}
|
||||
|
|
|
|||
|
|
@ -7,8 +7,6 @@ device @name @device
|
|||
@comptag"
|
||||
format="@name @pinlist @value "
|
||||
|
||||
device
|
||||
|
||||
}
|
||||
G {}
|
||||
V {}
|
||||
|
|
|
|||
|
|
@ -7,8 +7,6 @@ device @name @device
|
|||
@comptag"
|
||||
format="@name @pinlist @value "
|
||||
|
||||
device footprint
|
||||
|
||||
}
|
||||
G {}
|
||||
V {}
|
||||
|
|
|
|||
|
|
@ -7,8 +7,6 @@ device @name @device
|
|||
@comptag"
|
||||
format="@name @pinlist @value "
|
||||
|
||||
device
|
||||
|
||||
}
|
||||
G {}
|
||||
V {}
|
||||
|
|
|
|||
|
|
@ -7,8 +7,6 @@ device @name @device
|
|||
@comptag"
|
||||
format="@name @pinlist @value "
|
||||
|
||||
device
|
||||
|
||||
}
|
||||
G {}
|
||||
V {}
|
||||
|
|
|
|||
|
|
@ -7,8 +7,6 @@ device @name @device
|
|||
@comptag"
|
||||
format="@name @pinlist @value "
|
||||
|
||||
device
|
||||
|
||||
}
|
||||
G {}
|
||||
V {}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
v {xschem version=3.0.0 file_version=1.2}
|
||||
K {type=22V10
|
||||
template="device=22V10 name=U? footprint=DIP24 description=\\"Programmable Logic Device\\" Vcc=Vcc
|
||||
template="device=22V10 name=U? footprint=DIP24 description=\\"Programmable Logic Device\\" numslots=0 Vcc=Vcc
|
||||
GND=GND
|
||||
"
|
||||
tedax_format="footprint @name @footprint
|
||||
|
|
@ -9,7 +9,7 @@ device @name @device
|
|||
@comptag"
|
||||
format="@name @pinlist @value @Vcc @GND"
|
||||
|
||||
extra="device footprint description Vcc GND"
|
||||
extra="Vcc GND"
|
||||
extra_pinnumber="24 12"
|
||||
}
|
||||
G {}
|
||||
|
|
|
|||
|
|
@ -7,8 +7,6 @@ device @name @device
|
|||
@comptag"
|
||||
format="@name @pinlist @value "
|
||||
|
||||
footprint device
|
||||
|
||||
}
|
||||
G {}
|
||||
V {}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
v {xschem version=3.0.0 file_version=1.2}
|
||||
K {type=24Cxx
|
||||
template="device=24Cxx name=U? footprint=DIP8 description=\\"2-wire serial cmos eeprom\\" author=\\"Werner Hoch <werner.hoATgmx.de>\\" documentation=http://www.asec.com.tw/product/data/992/24C01_2.PDF comment=\\"Pin7 can be WP (write protect) too\\" Vcc=Vcc
|
||||
template="device=24Cxx name=U? footprint=DIP8 description=\\"2-wire serial cmos eeprom\\" numslots=0 author=\\"Werner Hoch <werner.hoATgmx.de>\\" documentation=http://www.asec.com.tw/product/data/992/24C01_2.PDF comment=\\"Pin7 can be WP (write protect) too\\" Vcc=Vcc
|
||||
GND=GND
|
||||
"
|
||||
tedax_format="footprint @name @footprint
|
||||
|
|
@ -9,7 +9,7 @@ device @name @device
|
|||
@comptag"
|
||||
format="@name @pinlist @value @Vcc @GND"
|
||||
|
||||
extra="device footprint description Vcc GND"
|
||||
extra="Vcc GND"
|
||||
extra_pinnumber="8 4"
|
||||
}
|
||||
G {}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
v {xschem version=3.0.0 file_version=1.2}
|
||||
K {type=25Cxx
|
||||
template="device=25Cxx name=U? footprint=DIP8 description=\\"SPI serial cmos eeprom\\" author=\\"Jeff Jackowski <jeffj@ro.com>\\" Vcc=Vcc
|
||||
template="device=25Cxx name=U? footprint=DIP8 description=\\"SPI serial cmos eeprom\\" numslots=0 author=\\"Jeff Jackowski <jeffj@ro.com>\\" Vcc=Vcc
|
||||
GND=GND
|
||||
"
|
||||
tedax_format="footprint @name @footprint
|
||||
|
|
@ -9,7 +9,7 @@ device @name @device
|
|||
@comptag"
|
||||
format="@name @pinlist @value @Vcc @GND"
|
||||
|
||||
extra="device footprint description Vcc GND"
|
||||
extra="Vcc GND"
|
||||
extra_pinnumber="8 4"
|
||||
}
|
||||
G {}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
v {xschem version=3.0.0 file_version=1.2}
|
||||
K {type=27256
|
||||
template="device=27256 name=U? footprint=DIP28 description=\\"256K (32Kx8) CMOS EPROM\\" author=\\"Werner Hoch <werner.hoATgmx.de>\\" documentation=http://www.microchip.com/download/lit/pline/memory/arc/11001m.pdf symversion=0.1 Vcc=Vcc
|
||||
template="device=27256 name=U? footprint=DIP28 description=\\"256K (32Kx8) CMOS EPROM\\" numslots=0 author=\\"Werner Hoch <werner.hoATgmx.de>\\" documentation=http://www.microchip.com/download/lit/pline/memory/arc/11001m.pdf symversion=0.1 Vcc=Vcc
|
||||
GND=GND
|
||||
"
|
||||
tedax_format="footprint @name @footprint
|
||||
|
|
@ -9,7 +9,7 @@ device @name @device
|
|||
@comptag"
|
||||
format="@name @pinlist @value @Vcc @GND"
|
||||
|
||||
extra="device footprint description Vcc GND"
|
||||
extra="Vcc GND"
|
||||
extra_pinnumber="28 14"
|
||||
}
|
||||
G {}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
v {xschem version=3.0.0 file_version=1.2}
|
||||
K {type=2732
|
||||
template="device=2732 name=U? footprint=DIP24 description=\\"32K (4Kx8) CMOS EPROM\\" author=\\"Jens-Peter Kaps <kapsATwpi.de>\\" Vcc=Vcc
|
||||
template="device=2732 name=U? footprint=DIP24 description=\\"32K (4Kx8) CMOS EPROM\\" numslots=0 author=\\"Jens-Peter Kaps <kapsATwpi.de>\\" Vcc=Vcc
|
||||
GND=GND
|
||||
"
|
||||
tedax_format="footprint @name @footprint
|
||||
|
|
@ -9,7 +9,7 @@ device @name @device
|
|||
@comptag"
|
||||
format="@name @pinlist @value @Vcc @GND"
|
||||
|
||||
extra="device footprint description Vcc GND"
|
||||
extra="Vcc GND"
|
||||
extra_pinnumber="24 12"
|
||||
}
|
||||
G {}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
v {xschem version=3.0.0 file_version=1.2}
|
||||
K {type=27512
|
||||
template="device=27512 name=U? footprint=DIP28 description=\\"512K (64K*8) cmos eprom\\" author=\\"Werner Hoch <werner.hoATgmx.de>\\" documentation=http://www.microchip.com/download/lit/pline/memory/arc/11173f.pdf symversion=0.1 Vcc=Vcc
|
||||
template="device=27512 name=U? footprint=DIP28 description=\\"512K (64K*8) cmos eprom\\" numslots=0 author=\\"Werner Hoch <werner.hoATgmx.de>\\" documentation=http://www.microchip.com/download/lit/pline/memory/arc/11173f.pdf symversion=0.1 Vcc=Vcc
|
||||
GND=GND
|
||||
"
|
||||
tedax_format="footprint @name @footprint
|
||||
|
|
@ -9,7 +9,7 @@ device @name @device
|
|||
@comptag"
|
||||
format="@name @pinlist @value @Vcc @GND"
|
||||
|
||||
extra="device footprint description Vcc GND"
|
||||
extra="Vcc GND"
|
||||
extra_pinnumber="28 14"
|
||||
}
|
||||
G {}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
v {xschem version=3.0.0 file_version=1.2}
|
||||
K {type=27C2001
|
||||
template="footprint=DIP32 pins=32 description=\\"2Mbit (256Kb*8) EPROM\\" author=\\"Geert Stappers <stappersATstappers.nl>\\" documentation=http://www.st.com/stonline/books/pdf/docs/2383.pdf device=27C2001 class=IC name=U? symversion=1.0 GND=GND
|
||||
template="footprint=DIP32 numslots=0 pins=32 description=\\"2Mbit (256Kb*8) EPROM\\" author=\\"Geert Stappers <stappersATstappers.nl>\\" documentation=http://www.st.com/stonline/books/pdf/docs/2383.pdf device=27C2001 class=IC name=U? symversion=1.0 GND=GND
|
||||
"
|
||||
tedax_format="footprint @name @footprint
|
||||
value @name @value
|
||||
|
|
@ -8,7 +8,7 @@ device @name @device
|
|||
@comptag"
|
||||
format="@name @pinlist @value @GND"
|
||||
|
||||
extra="footprint description device GND"
|
||||
extra="GND"
|
||||
extra_pinnumber="16"
|
||||
}
|
||||
G {}
|
||||
|
|
|
|||
|
|
@ -1,14 +1,12 @@
|
|||
v {xschem version=3.0.0 file_version=1.2}
|
||||
K {type=27256
|
||||
template="device=27256 name=U? footprint=DIP28 description=\\"256K (32K*8) cmos eprom\\" documentation=http://www.microchip.com/download/lit/pline/memory/arc/11001m.pdf author=\\"Werner Hoch <werner.hoATgmx.de>\\" symversion=0.1 "
|
||||
template="device=27256 name=U? footprint=DIP28 description=\\"256K (32K*8) cmos eprom\\" numslots=0 documentation=http://www.microchip.com/download/lit/pline/memory/arc/11001m.pdf author=\\"Werner Hoch <werner.hoATgmx.de>\\" symversion=0.1 "
|
||||
tedax_format="footprint @name @footprint
|
||||
value @name @value
|
||||
device @name @device
|
||||
@comptag"
|
||||
format="@name @pinlist @value "
|
||||
|
||||
device footprint description
|
||||
|
||||
}
|
||||
G {}
|
||||
V {}
|
||||
|
|
|
|||
|
|
@ -7,8 +7,6 @@ device @name @device
|
|||
@comptag"
|
||||
format="@name @pinlist @value "
|
||||
|
||||
device
|
||||
|
||||
}
|
||||
G {}
|
||||
V {}
|
||||
|
|
|
|||
|
|
@ -7,8 +7,6 @@ device @name @device
|
|||
@comptag"
|
||||
format="@name @pinlist @value "
|
||||
|
||||
device
|
||||
|
||||
}
|
||||
G {}
|
||||
V {}
|
||||
|
|
|
|||
|
|
@ -7,8 +7,6 @@ device @name @device
|
|||
@comptag"
|
||||
format="@name @pinlist @value "
|
||||
|
||||
device footprint
|
||||
|
||||
}
|
||||
G {}
|
||||
V {}
|
||||
|
|
|
|||
|
|
@ -1,14 +1,12 @@
|
|||
v {xschem version=3.0.0 file_version=1.2}
|
||||
K {type=2N3904
|
||||
template="device=2N3904 name=Q? footprint=TO92 "
|
||||
template="device=2N3904 name=Q? footprint=TO92 numslots=0 "
|
||||
tedax_format="footprint @name @footprint
|
||||
value @name @value
|
||||
device @name @device
|
||||
@comptag"
|
||||
format="@name @pinlist @value "
|
||||
|
||||
device footprint
|
||||
|
||||
}
|
||||
G {}
|
||||
V {}
|
||||
|
|
|
|||
|
|
@ -1,14 +1,12 @@
|
|||
v {xschem version=3.0.0 file_version=1.2}
|
||||
K {type=2N3906
|
||||
template="device=2N3906 name=Q? description=\\"2N3906 PNP transistor\\" documentation=http://www.fairchildsemi.com/pf/2N/2N3906.html footprint=TO92 "
|
||||
template="device=2N3906 name=Q? description=\\"2N3906 PNP transistor\\" documentation=http://www.fairchildsemi.com/pf/2N/2N3906.html numslots=0 footprint=TO92 "
|
||||
tedax_format="footprint @name @footprint
|
||||
value @name @value
|
||||
device @name @device
|
||||
@comptag"
|
||||
format="@name @pinlist @value "
|
||||
|
||||
device description footprint
|
||||
|
||||
}
|
||||
G {}
|
||||
V {}
|
||||
|
|
|
|||
|
|
@ -1,14 +1,12 @@
|
|||
v {xschem version=3.0.0 file_version=1.2}
|
||||
K {type=2N5245
|
||||
template="device=2N5245 name=Q? footprint=TO92 description=\\"n-channel rf amplifier\\" documentation=http://www.fairchildsemi.com/ds/2N/2N5245.pdf "
|
||||
template="device=2N5245 name=Q? footprint=TO92 description=\\"n-channel rf amplifier\\" numslots=0 documentation=http://www.fairchildsemi.com/ds/2N/2N5245.pdf "
|
||||
tedax_format="footprint @name @footprint
|
||||
value @name @value
|
||||
device @name @device
|
||||
@comptag"
|
||||
format="@name @pinlist @value "
|
||||
|
||||
device footprint description
|
||||
|
||||
}
|
||||
G {}
|
||||
V {}
|
||||
|
|
|
|||
|
|
@ -1,14 +1,12 @@
|
|||
v {xschem version=3.0.0 file_version=1.2}
|
||||
K {type=2N5911
|
||||
template="device=2N5911 name=Q? footprint=TO78 description=\\"matched n-channel jfet pairs\\" documentation=http://wwww.ges.cz/sheet/2/2n5911.pdf slot=1 "
|
||||
template="device=2N5911 name=Q? footprint=TO78 description=\\"matched n-channel jfet pairs\\" numslots=2 documentation=http://wwww.ges.cz/sheet/2/2n5911.pdf slot=1 "
|
||||
tedax_format="footprint @name @footprint
|
||||
value @name @value
|
||||
device @name @device
|
||||
@comptag"
|
||||
format="@name @pinlist @value "
|
||||
|
||||
device footprint description
|
||||
|
||||
}
|
||||
G {}
|
||||
V {}
|
||||
|
|
|
|||
|
|
@ -7,8 +7,6 @@ device @name @device
|
|||
@comptag"
|
||||
format="@name @pinlist @value "
|
||||
|
||||
device
|
||||
|
||||
}
|
||||
G {}
|
||||
V {}
|
||||
|
|
|
|||
|
|
@ -7,8 +7,6 @@ device @name @device
|
|||
@comptag"
|
||||
format="@name @pinlist @value "
|
||||
|
||||
device
|
||||
|
||||
}
|
||||
G {}
|
||||
V {}
|
||||
|
|
|
|||
|
|
@ -7,8 +7,6 @@ device @name @device
|
|||
@comptag"
|
||||
format="@name @pinlist @value "
|
||||
|
||||
device
|
||||
|
||||
}
|
||||
G {}
|
||||
V {}
|
||||
|
|
|
|||
|
|
@ -1,14 +1,12 @@
|
|||
v {xschem version=3.0.0 file_version=1.2}
|
||||
K {type=31-71043
|
||||
template="name=J? footprint=AMPHENOL_31_71043 description=\\"75 Ohm BNC connector, 90 Degree Angle, PC Mount, Female\\" device=31-71043 documentation=31-71043 "
|
||||
template="name=J? footprint=AMPHENOL_31_71043 description=\\"75 Ohm BNC connector, 90 Degree Angle, PC Mount, Female\\" device=31-71043 numslots=0 documentation=31-71043 "
|
||||
tedax_format="footprint @name @footprint
|
||||
value @name @value
|
||||
device @name @device
|
||||
@comptag"
|
||||
format="@name @pinlist @value "
|
||||
|
||||
footprint description device
|
||||
|
||||
}
|
||||
G {}
|
||||
V {}
|
||||
|
|
|
|||
|
|
@ -7,8 +7,6 @@ device @name @device
|
|||
@comptag"
|
||||
format="@name @pinlist @value "
|
||||
|
||||
device
|
||||
|
||||
}
|
||||
G {}
|
||||
V {}
|
||||
|
|
|
|||
|
|
@ -1,14 +1,12 @@
|
|||
v {xschem version=3.0.0 file_version=1.2}
|
||||
K {type=a3967lsb
|
||||
template="name=U? device=a3967lsb footprint=\\"SO24 .050\\" author=\\"m. dickens <marvindickens@bellsouth.net>\\" documentation=http://www.allegro.com description=\\"microstepping driver with translator\\" "
|
||||
template="name=U? device=a3967lsb footprint=\\"SO24 .050\\" author=\\"m. dickens <marvindickens@bellsouth.net>\\" documentation=http://www.allegro.com description=\\"microstepping driver with translator\\" numslots=0 "
|
||||
tedax_format="footprint @name @footprint
|
||||
value @name @value
|
||||
device @name @device
|
||||
@comptag"
|
||||
format="@name @pinlist @value "
|
||||
|
||||
device footprint description
|
||||
|
||||
}
|
||||
G {}
|
||||
V {}
|
||||
|
|
|
|||
|
|
@ -7,8 +7,6 @@ device @name @device
|
|||
@comptag"
|
||||
format="@name @pinlist @value "
|
||||
|
||||
device footprint
|
||||
|
||||
}
|
||||
G {}
|
||||
V {}
|
||||
|
|
|
|||
|
|
@ -7,8 +7,6 @@ device @name @device
|
|||
@comptag"
|
||||
format="@name @pinlist @value "
|
||||
|
||||
device
|
||||
|
||||
}
|
||||
G {}
|
||||
V {}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
v {xschem version=3.0.0 file_version=1.2}
|
||||
K {type=4000
|
||||
template="device=4000 name=U? footprint=DIP14 description=\\"2 NOR-gates with 3 inputs, 1 NOT-gate\\" VDD=VDD
|
||||
template="device=4000 name=U? footprint=DIP14 description=\\"2 NOR-gates with 3 inputs, 1 NOT-gate\\" numslots=0 VDD=VDD
|
||||
VSS=VSS
|
||||
"
|
||||
tedax_format="footprint @name @footprint
|
||||
|
|
@ -9,7 +9,7 @@ device @name @device
|
|||
@comptag"
|
||||
format="@name @pinlist @value @VDD @VSS"
|
||||
|
||||
extra="device footprint description VDD VSS"
|
||||
extra="VDD VSS"
|
||||
extra_pinnumber="14 7"
|
||||
}
|
||||
G {}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
v {xschem version=3.0.0 file_version=1.2}
|
||||
K {type=4000
|
||||
template="device=4000 name=U? footprint=DIP14 description=\\"2 NOR-gates with 3 inputs, 1 NOT-gate\\" VDD=VDD
|
||||
template="device=4000 name=U? footprint=DIP14 description=\\"2 NOR-gates with 3 inputs, 1 NOT-gate\\" numslots=0 VDD=VDD
|
||||
VSS=VSS
|
||||
"
|
||||
tedax_format="footprint @name @footprint
|
||||
|
|
@ -9,7 +9,7 @@ device @name @device
|
|||
@comptag"
|
||||
format="@name @pinlist @value @VDD @VSS"
|
||||
|
||||
extra="device footprint description VDD VSS"
|
||||
extra="VDD VSS"
|
||||
extra_pinnumber="14 7"
|
||||
}
|
||||
G {}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
v {xschem version=3.0.0 file_version=1.2}
|
||||
K {type=4001
|
||||
template="device=4001 slot=1 name=U? footprint=DIP14 description=\\"4 NOR-gates with 2 inputs\\" VDD=VDD
|
||||
template="device=4001 slot=1 numslots=4 name=U? footprint=DIP14 description=\\"4 NOR-gates with 2 inputs\\" VDD=VDD
|
||||
VSS=VSS
|
||||
"
|
||||
tedax_format="footprint @name @footprint
|
||||
|
|
@ -9,7 +9,7 @@ device @name @device
|
|||
@comptag"
|
||||
format="@name @pinlist @value @VDD @VSS"
|
||||
|
||||
extra="device footprint description VDD VSS"
|
||||
extra="VDD VSS"
|
||||
extra_pinnumber="14 7"
|
||||
}
|
||||
G {}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
v {xschem version=3.0.0 file_version=1.2}
|
||||
K {type=4002
|
||||
template="device=4002 slot=1 footprint=DIP14 description=\\"2 NOR-gates with 4 inputs\\" name=U? symversion=1.0 VDD=VDD
|
||||
template="device=4002 numslots=2 slot=1 footprint=DIP14 description=\\"2 NOR-gates with 4 inputs\\" name=U? symversion=1.0 VDD=VDD
|
||||
VSS=VSS
|
||||
"
|
||||
tedax_format="footprint @name @footprint
|
||||
|
|
@ -9,7 +9,7 @@ device @name @device
|
|||
@comptag"
|
||||
format="@name @pinlist @value @VDD @VSS"
|
||||
|
||||
extra="device footprint description VDD VSS"
|
||||
extra="VDD VSS"
|
||||
extra_pinnumber="14 7"
|
||||
}
|
||||
G {}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
v {xschem version=3.0.0 file_version=1.2}
|
||||
K {type=4002
|
||||
template="device=4002 slot=1 name=U? footprint=DIP14 description=\\"2 NOR gates with 4 inputs\\" symversion=0.1 VDD=VDD
|
||||
template="device=4002 slot=1 numslots=2 name=U? footprint=DIP14 description=\\"2 NOR gates with 4 inputs\\" symversion=0.1 VDD=VDD
|
||||
VSS=VSS
|
||||
"
|
||||
tedax_format="footprint @name @footprint
|
||||
|
|
@ -9,7 +9,7 @@ device @name @device
|
|||
@comptag"
|
||||
format="@name @pinlist @value @VDD @VSS"
|
||||
|
||||
extra="device footprint description VDD VSS"
|
||||
extra="VDD VSS"
|
||||
extra_pinnumber="14 7"
|
||||
}
|
||||
G {}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
v {xschem version=3.0.0 file_version=1.2}
|
||||
K {type=4006
|
||||
template="name=U? device=4006 footprint=DIP14 description=\\"18-stage static shift register\\" VSS=VSS
|
||||
template="name=U? device=4006 footprint=DIP14 description=\\"18-stage static shift register\\" numslots=0 VSS=VSS
|
||||
VDD=VDD
|
||||
"
|
||||
tedax_format="footprint @name @footprint
|
||||
|
|
@ -9,7 +9,7 @@ device @name @device
|
|||
@comptag"
|
||||
format="@name @pinlist @value @VSS @VDD"
|
||||
|
||||
extra="device footprint description VSS VDD"
|
||||
extra="VSS VDD"
|
||||
extra_pinnumber="7 14"
|
||||
}
|
||||
G {}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
v {xschem version=3.0.0 file_version=1.2}
|
||||
K {type=4006
|
||||
template="name=U? device=4006 footprint=DIP14 description=\\"18-stage static shift register\\" symversion=1.0 VSS=VSS
|
||||
template="name=U? device=4006 footprint=DIP14 description=\\"18-stage static shift register\\" numslots=0 symversion=1.0 VSS=VSS
|
||||
VDD=VDD
|
||||
"
|
||||
tedax_format="footprint @name @footprint
|
||||
|
|
@ -9,7 +9,7 @@ device @name @device
|
|||
@comptag"
|
||||
format="@name @pinlist @value @VSS @VDD"
|
||||
|
||||
extra="device footprint description VSS VDD"
|
||||
extra="VSS VDD"
|
||||
extra_pinnumber="7 14"
|
||||
}
|
||||
G {}
|
||||
|
|
|
|||
|
|
@ -1,14 +1,12 @@
|
|||
v {xschem version=3.0.0 file_version=1.2}
|
||||
K {type=4007
|
||||
template="name=U? device=4007 footprint=DIP14 description=\\"dual complementary pair and inverter\\" "
|
||||
template="name=U? device=4007 footprint=DIP14 description=\\"dual complementary pair and inverter\\" numslots=0 "
|
||||
tedax_format="footprint @name @footprint
|
||||
value @name @value
|
||||
device @name @device
|
||||
@comptag"
|
||||
format="@name @pinlist @value "
|
||||
|
||||
device footprint description
|
||||
|
||||
}
|
||||
G {}
|
||||
V {}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
v {xschem version=3.0.0 file_version=1.2}
|
||||
K {type=4008
|
||||
template="name=U? device=4008 footprint=DIP16 description=\\"4 bit binary full adder\\" VSS=VSS
|
||||
template="name=U? device=4008 footprint=DIP16 description=\\"4 bit binary full adder\\" numslots=0 VSS=VSS
|
||||
VDD=VDD
|
||||
"
|
||||
tedax_format="footprint @name @footprint
|
||||
|
|
@ -9,7 +9,7 @@ device @name @device
|
|||
@comptag"
|
||||
format="@name @pinlist @value @VSS @VDD"
|
||||
|
||||
extra="device footprint description VSS VDD"
|
||||
extra="VSS VDD"
|
||||
extra_pinnumber="8 16"
|
||||
}
|
||||
G {}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
v {xschem version=3.0.0 file_version=1.2}
|
||||
K {type=4008
|
||||
template="name=U? device=4008 footprint=DIP16 description=\\"4 bit binary full adder\\" VSS=VSS
|
||||
template="name=U? device=4008 footprint=DIP16 description=\\"4 bit binary full adder\\" numslots=0 VSS=VSS
|
||||
VDD=VDD
|
||||
"
|
||||
tedax_format="footprint @name @footprint
|
||||
|
|
@ -9,7 +9,7 @@ device @name @device
|
|||
@comptag"
|
||||
format="@name @pinlist @value @VSS @VDD"
|
||||
|
||||
extra="device footprint description VSS VDD"
|
||||
extra="VSS VDD"
|
||||
extra_pinnumber="8 16"
|
||||
}
|
||||
G {}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
v {xschem version=3.0.0 file_version=1.2}
|
||||
K {type=4009
|
||||
template="device=4009 slot=1 name=U? pins=16 class=IC footprint=DIP16 description=\\"6 CMOS to TTL inverting converter\\" GND=GND
|
||||
template="device=4009 slot=1 numslots=6 name=U? pins=16 class=IC footprint=DIP16 description=\\"6 CMOS to TTL inverting converter\\" GND=GND
|
||||
Vcc=Vcc
|
||||
VDD=VDD
|
||||
"
|
||||
|
|
@ -10,7 +10,7 @@ device @name @device
|
|||
@comptag"
|
||||
format="@name @pinlist @value @GND @Vcc @VDD"
|
||||
|
||||
extra="device footprint description GND Vcc VDD"
|
||||
extra="GND Vcc VDD"
|
||||
extra_pinnumber="8 1 16"
|
||||
}
|
||||
G {}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
v {xschem version=3.0.0 file_version=1.2}
|
||||
K {type=4010
|
||||
template="device=4010 slot=1 name=U? pins=16 class=IC footprint=DIP16 description=\\"6 CMOS to TTL converter\\" GND=GND
|
||||
template="device=4010 slot=1 numslots=6 name=U? pins=16 class=IC footprint=DIP16 description=\\"6 CMOS to TTL converter\\" GND=GND
|
||||
VDD=VDD
|
||||
Vcc=Vcc
|
||||
"
|
||||
|
|
@ -10,7 +10,7 @@ device @name @device
|
|||
@comptag"
|
||||
format="@name @pinlist @value @GND @VDD @Vcc"
|
||||
|
||||
extra="device footprint description GND VDD Vcc"
|
||||
extra="GND VDD Vcc"
|
||||
extra_pinnumber="8 16 1"
|
||||
}
|
||||
G {}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
v {xschem version=3.0.0 file_version=1.2}
|
||||
K {type=40100
|
||||
template="name=U? device=40100 footprint=DIP16 description=\\"32-stage static left/right shift register\\" VSS=VSS
|
||||
template="name=U? device=40100 footprint=DIP16 description=\\"32-stage static left/right shift register\\" numslots=0 VSS=VSS
|
||||
VDD=VDD
|
||||
"
|
||||
tedax_format="footprint @name @footprint
|
||||
|
|
@ -9,7 +9,7 @@ device @name @device
|
|||
@comptag"
|
||||
format="@name @pinlist @value @VSS @VDD"
|
||||
|
||||
extra="device footprint description VSS VDD"
|
||||
extra="VSS VDD"
|
||||
extra_pinnumber="8 16"
|
||||
}
|
||||
G {}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
v {xschem version=3.0.0 file_version=1.2}
|
||||
K {type=40101
|
||||
template="name=U? device=40101 footprint=DIP14 description=\\"9 bit parity checker\\" VSS=VSS
|
||||
template="name=U? device=40101 footprint=DIP14 description=\\"9 bit parity checker\\" numslots=0 VSS=VSS
|
||||
VDD=VDD
|
||||
"
|
||||
tedax_format="footprint @name @footprint
|
||||
|
|
@ -9,7 +9,7 @@ device @name @device
|
|||
@comptag"
|
||||
format="@name @pinlist @value @VSS @VDD"
|
||||
|
||||
extra="device footprint description VSS VDD"
|
||||
extra="VSS VDD"
|
||||
extra_pinnumber="7 14"
|
||||
}
|
||||
G {}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
v {xschem version=3.0.0 file_version=1.2}
|
||||
K {type=40102
|
||||
template="name=U? device=40102 footprint=DIP16 description=\\"8-bit synchrounous BCD down counter\\" VSS=VSS
|
||||
template="name=U? device=40102 footprint=DIP16 description=\\"8-bit synchrounous BCD down counter\\" numslots=0 VSS=VSS
|
||||
VDD=VDD
|
||||
"
|
||||
tedax_format="footprint @name @footprint
|
||||
|
|
@ -9,7 +9,7 @@ device @name @device
|
|||
@comptag"
|
||||
format="@name @pinlist @value @VSS @VDD"
|
||||
|
||||
extra="device footprint description VSS VDD"
|
||||
extra="VSS VDD"
|
||||
extra_pinnumber="8 16"
|
||||
}
|
||||
G {}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
v {xschem version=3.0.0 file_version=1.2}
|
||||
K {type=40103
|
||||
template="name=U? device=40103 footprint=DIP16 description=\\"8-bit synchrounous binary down counter\\" VSS=VSS
|
||||
template="name=U? device=40103 footprint=DIP16 description=\\"8-bit synchrounous binary down counter\\" numslots=0 VSS=VSS
|
||||
VDD=VDD
|
||||
"
|
||||
tedax_format="footprint @name @footprint
|
||||
|
|
@ -9,7 +9,7 @@ device @name @device
|
|||
@comptag"
|
||||
format="@name @pinlist @value @VSS @VDD"
|
||||
|
||||
extra="device footprint description VSS VDD"
|
||||
extra="VSS VDD"
|
||||
extra_pinnumber="8 16"
|
||||
}
|
||||
G {}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
v {xschem version=3.0.0 file_version=1.2}
|
||||
K {type=40104
|
||||
template="name=U? device=40104 footprint=DIP16 description=\\"4-bit bidirectional shift register\\" VSS=VSS
|
||||
template="name=U? device=40104 footprint=DIP16 description=\\"4-bit bidirectional shift register\\" numslots=0 VSS=VSS
|
||||
VDD=VDD
|
||||
"
|
||||
tedax_format="footprint @name @footprint
|
||||
|
|
@ -9,7 +9,7 @@ device @name @device
|
|||
@comptag"
|
||||
format="@name @pinlist @value @VSS @VDD"
|
||||
|
||||
extra="device footprint description VSS VDD"
|
||||
extra="VSS VDD"
|
||||
extra_pinnumber="8 16"
|
||||
}
|
||||
G {}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
v {xschem version=3.0.0 file_version=1.2}
|
||||
K {type=40105
|
||||
template="name=U? device=40105 footprint=DIP16 description=\\"4-bit x 16-word fifo register\\" VSS=VSS
|
||||
template="name=U? device=40105 footprint=DIP16 description=\\"4-bit x 16-word fifo register\\" numslots=0 VSS=VSS
|
||||
VDD=VDD
|
||||
"
|
||||
tedax_format="footprint @name @footprint
|
||||
|
|
@ -9,7 +9,7 @@ device @name @device
|
|||
@comptag"
|
||||
format="@name @pinlist @value @VSS @VDD"
|
||||
|
||||
extra="device footprint description VSS VDD"
|
||||
extra="VSS VDD"
|
||||
extra_pinnumber="8 16"
|
||||
}
|
||||
G {}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
v {xschem version=3.0.0 file_version=1.2}
|
||||
K {type=40106
|
||||
template="device=40106 footprint=none name=U? slot=1 description=\\"6 inverting Schmitt triggers\\" documentation=http://www.semiconductors.philips.com/acrobat/datasheets/HEF40106B_CNV_3.pdf VDD=VDD
|
||||
template="device=40106 footprint=none numslots=6 name=U? slot=1 description=\\"6 inverting Schmitt triggers\\" documentation=http://www.semiconductors.philips.com/acrobat/datasheets/HEF40106B_CNV_3.pdf VDD=VDD
|
||||
VSS=VSS
|
||||
"
|
||||
tedax_format="footprint @name @footprint
|
||||
|
|
@ -9,7 +9,7 @@ device @name @device
|
|||
@comptag"
|
||||
format="@name @pinlist @value @VDD @VSS"
|
||||
|
||||
extra="device footprint description VDD VSS"
|
||||
extra="VDD VSS"
|
||||
extra_pinnumber="14 7"
|
||||
}
|
||||
G {}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
v {xschem version=3.0.0 file_version=1.2}
|
||||
K {type=40107
|
||||
template="device=40107 slot=1 footprint=DIP8 description=\\"Dual 2-input open-collector NAND gates with buffered output\\" name=U? symversion=1.0 VDD=VDD
|
||||
template="device=40107 numslots=2 slot=1 footprint=DIP8 description=\\"Dual 2-input open-collector NAND gates with buffered output\\" name=U? symversion=1.0 VDD=VDD
|
||||
VSS=VSS
|
||||
"
|
||||
tedax_format="footprint @name @footprint
|
||||
|
|
@ -9,7 +9,7 @@ device @name @device
|
|||
@comptag"
|
||||
format="@name @pinlist @value @VDD @VSS"
|
||||
|
||||
extra="device footprint description VDD VSS"
|
||||
extra="VDD VSS"
|
||||
extra_pinnumber="8 4"
|
||||
}
|
||||
G {}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
v {xschem version=3.0.0 file_version=1.2}
|
||||
K {type=40108
|
||||
template="name=U? device=40108 footprint=DIP24 description=\\"4x4 multiport register\\" VSS=VSS
|
||||
template="name=U? device=40108 footprint=DIP24 description=\\"4x4 multiport register\\" numslots=0 VSS=VSS
|
||||
VDD=VDD
|
||||
"
|
||||
tedax_format="footprint @name @footprint
|
||||
|
|
@ -9,7 +9,7 @@ device @name @device
|
|||
@comptag"
|
||||
format="@name @pinlist @value @VSS @VDD"
|
||||
|
||||
extra="device footprint description VSS VDD"
|
||||
extra="VSS VDD"
|
||||
extra_pinnumber="12 24"
|
||||
}
|
||||
G {}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
v {xschem version=3.0.0 file_version=1.2}
|
||||
K {type=40109
|
||||
template="name=U? device=40109 slot=1 footprint=DIP16 description=\\"4 LOW-to-HIGH voltage level shifter\\" VSS=VSS
|
||||
template="name=U? device=40109 slot=1 numslots=4 footprint=DIP16 description=\\"4 LOW-to-HIGH voltage level shifter\\" VSS=VSS
|
||||
VDD=VDD
|
||||
VCC=VCC
|
||||
"
|
||||
|
|
@ -10,7 +10,7 @@ device @name @device
|
|||
@comptag"
|
||||
format="@name @pinlist @value @VSS @VDD @VCC"
|
||||
|
||||
extra="device footprint description VSS VDD VCC"
|
||||
extra="VSS VDD VCC"
|
||||
extra_pinnumber="8 16 1"
|
||||
}
|
||||
G {}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
v {xschem version=3.0.0 file_version=1.2}
|
||||
K {type=4011
|
||||
template="device=4011 slot=1 footprint=DIP14 description=\\"4 NAND-gates with 2 inputs\\" name=U? symversion=1.0 VDD=VDD
|
||||
template="device=4011 numslots=4 slot=1 footprint=DIP14 description=\\"4 NAND-gates with 2 inputs\\" name=U? symversion=1.0 VDD=VDD
|
||||
VSS=VSS
|
||||
"
|
||||
tedax_format="footprint @name @footprint
|
||||
|
|
@ -9,7 +9,7 @@ device @name @device
|
|||
@comptag"
|
||||
format="@name @pinlist @value @VDD @VSS"
|
||||
|
||||
extra="device footprint description VDD VSS"
|
||||
extra="VDD VSS"
|
||||
extra_pinnumber="14 7"
|
||||
}
|
||||
G {}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
v {xschem version=3.0.0 file_version=1.2}
|
||||
K {type=4011
|
||||
template="device=4011 footprint=DIP14 class=IC slot=1 name=U? description=\\"4 NAND-gates with 2 inputs\\" GND=GND
|
||||
template="device=4011 footprint=DIP14 class=IC slot=1 numslots=4 name=U? description=\\"4 NAND-gates with 2 inputs\\" GND=GND
|
||||
VDD=VDD
|
||||
"
|
||||
tedax_format="footprint @name @footprint
|
||||
|
|
@ -9,7 +9,7 @@ device @name @device
|
|||
@comptag"
|
||||
format="@name @pinlist @value @GND @VDD"
|
||||
|
||||
extra="device footprint description GND VDD"
|
||||
extra="GND VDD"
|
||||
extra_pinnumber="7 14"
|
||||
}
|
||||
G {}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
v {xschem version=3.0.0 file_version=1.2}
|
||||
K {type=40110
|
||||
template="name=U? device=40110 footprint=DIP16 description=\\"decade up-down counter/7-segment decoder/latch/driver\\" VSS=VSS
|
||||
template="name=U? device=40110 footprint=DIP16 description=\\"decade up-down counter/7-segment decoder/latch/driver\\" numslots=0 VSS=VSS
|
||||
VDD=VDD
|
||||
"
|
||||
tedax_format="footprint @name @footprint
|
||||
|
|
@ -9,7 +9,7 @@ device @name @device
|
|||
@comptag"
|
||||
format="@name @pinlist @value @VSS @VDD"
|
||||
|
||||
extra="device footprint description VSS VDD"
|
||||
extra="VSS VDD"
|
||||
extra_pinnumber="8 16"
|
||||
}
|
||||
G {}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
v {xschem version=3.0.0 file_version=1.2}
|
||||
K {type=40117
|
||||
template="name=U? device=40117 footprint=DIP14 VSS=VSS
|
||||
template="name=U? device=40117 footprint=DIP14 numslots=0 VSS=VSS
|
||||
VDD=VDD
|
||||
"
|
||||
tedax_format="footprint @name @footprint
|
||||
|
|
@ -9,7 +9,7 @@ device @name @device
|
|||
@comptag"
|
||||
format="@name @pinlist @value @VSS @VDD"
|
||||
|
||||
extra="device footprint VSS VDD"
|
||||
extra="VSS VDD"
|
||||
extra_pinnumber="7 14"
|
||||
}
|
||||
G {}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
v {xschem version=3.0.0 file_version=1.2}
|
||||
K {type=4012
|
||||
template="device=4012 slot=1 footprint=DIP14 description=\\"2 NAND-gates with 2 inputs\\" symversion=1.0 name=U? VDD=VDD
|
||||
template="numslots=2 device=4012 slot=1 footprint=DIP14 description=\\"2 NAND-gates with 2 inputs\\" symversion=1.0 name=U? VDD=VDD
|
||||
VSS=VSS
|
||||
"
|
||||
tedax_format="footprint @name @footprint
|
||||
|
|
@ -9,7 +9,7 @@ device @name @device
|
|||
@comptag"
|
||||
format="@name @pinlist @value @VDD @VSS"
|
||||
|
||||
extra="device footprint description VDD VSS"
|
||||
extra="VDD VSS"
|
||||
extra_pinnumber="14 7"
|
||||
}
|
||||
G {}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
v {xschem version=3.0.0 file_version=1.2}
|
||||
K {type=4013
|
||||
template="device=4013 slot=1 name=U? footprint=DIP14 description=\\"2 D-type flip-flops\\" VDD=VDD
|
||||
template="device=4013 slot=1 numslots=2 name=U? footprint=DIP14 description=\\"2 D-type flip-flops\\" VDD=VDD
|
||||
VSS=VSS
|
||||
"
|
||||
tedax_format="footprint @name @footprint
|
||||
|
|
@ -9,7 +9,7 @@ device @name @device
|
|||
@comptag"
|
||||
format="@name @pinlist @value @VDD @VSS"
|
||||
|
||||
extra="device footprint description VDD VSS"
|
||||
extra="VDD VSS"
|
||||
extra_pinnumber="14 7"
|
||||
}
|
||||
G {}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
v {xschem version=3.0.0 file_version=1.2}
|
||||
K {type=4014
|
||||
template="name=U? device=4014 footprint=DIP16 description=\\"8-bit shift register with parallel load\\" VSS=VSS
|
||||
template="name=U? device=4014 footprint=DIP16 description=\\"8-bit shift register with parallel load\\" numslots=0 VSS=VSS
|
||||
VDD=VDD
|
||||
"
|
||||
tedax_format="footprint @name @footprint
|
||||
|
|
@ -9,7 +9,7 @@ device @name @device
|
|||
@comptag"
|
||||
format="@name @pinlist @value @VSS @VDD"
|
||||
|
||||
extra="device footprint description VSS VDD"
|
||||
extra="VSS VDD"
|
||||
extra_pinnumber="8 16"
|
||||
}
|
||||
G {}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
v {xschem version=3.0.0 file_version=1.2}
|
||||
K {type=4014
|
||||
template="name=U? device=4014 footprint=DIP16 description=\\"8-bit shift register with parallel load\\" VSS=VSS
|
||||
template="name=U? device=4014 footprint=DIP16 description=\\"8-bit shift register with parallel load\\" numslots=0 VSS=VSS
|
||||
VDD=VDD
|
||||
"
|
||||
tedax_format="footprint @name @footprint
|
||||
|
|
@ -9,7 +9,7 @@ device @name @device
|
|||
@comptag"
|
||||
format="@name @pinlist @value @VSS @VDD"
|
||||
|
||||
extra="device footprint description VSS VDD"
|
||||
extra="VSS VDD"
|
||||
extra_pinnumber="8 16"
|
||||
}
|
||||
G {}
|
||||
|
|
|
|||
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue