updated gschem conversions, add tutorial documentation about geda translation to xschem
This commit is contained in:
parent
0791a99165
commit
2f47dfaaab
|
|
@ -0,0 +1,103 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>XSCHEM TUTORIAL: Translate GEDA gschem/lepton-schematic schematics and symbols to xschem</title>
|
||||
<link rel="stylesheet" type="text/css" href="xschem_man.css" />
|
||||
<style type="text/css">
|
||||
/* Local styling goes here */
|
||||
p{padding: 15px 30px 10px;}
|
||||
</style>
|
||||
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<!-- start of slide -->
|
||||
<div class="content">
|
||||
<!-- navigation buttons -->
|
||||
<a href="xschem_man.html" class="home">UP</a>
|
||||
|
||||
<!-- slide title -->
|
||||
<h1>TUTORIAL: Translate GEDA gschem/lepton-schematic schematics and symbols to xschem</h1>
|
||||
<p>
|
||||
The <kbd>gschemtoxschem.awk</kbd> utility (installed in <kbd>(install_root)/share/xschem</kbd>) generates xschem
|
||||
schematic and symbol files from their GEDA equivalents.
|
||||
</p>
|
||||
<p>
|
||||
First of all, note that xschem comes with all geda symbols already translated to xschem.
|
||||
</p>
|
||||
<p>
|
||||
Create an empty directory where you want your xschem schematics/symbols, inside this directory create an <kbd>xschemrc</kbd> file
|
||||
with the following path added, if not already done in your <span style="white-space: nowrap;"><kbd>~/.xschem/xschemrc</kbd></span> file:
|
||||
</p>
|
||||
<pre class="code">
|
||||
append XSCHEM_LIBRARY_PATH :${XSCHEM_SHAREDIR}/../doc/xschem/gschem_import/sym
|
||||
</pre>
|
||||
<p>
|
||||
Next, in this directory create a <kbd>convert.sh</kbd> script and make it executable:
|
||||
</p>
|
||||
<pre class="code">
|
||||
#!/bin/bash
|
||||
|
||||
# remove empty glob specifications *.sym or *.sch
|
||||
shopt -s nullglob
|
||||
|
||||
for file in directory_with_geda_files/*.{sym,sch}
|
||||
do
|
||||
/path_to_xschem_install_root/share/xschem/gschemtoxschem.awk $file > $(basename -- $file)
|
||||
done
|
||||
</pre>
|
||||
<p>
|
||||
Note that you have to set the correct path for <kbd>gschemtoxschem.awk</kbd> depending on your xschem installation
|
||||
and set the correct path for the directory (<kbd>directory_with_geda_files</kbd> in above example) containing the geda files.
|
||||
<br>
|
||||
The current directory will be populated with xschem schematics/symbols with the same name as their GEDA equivalents.
|
||||
Incidentally xschem and gschem use the same file extensions (.sym, .sch), so be careful not to mix xschem and gschem files.
|
||||
</p>
|
||||
|
||||
<p>
|
||||
Below an example of a schematic and a symbol shown both in xschem and lepton-schematic (gschem fork)
|
||||
</p>
|
||||
<img src = "tutorial_gschemtoxschem_01.png">
|
||||
<br>
|
||||
<img src = "tutorial_gschemtoxschem_02.png">
|
||||
|
||||
<h3> Notes for schematics targeted for spice simulations </h3>
|
||||
<p>
|
||||
Most of geda schematics do not define precise rules for spice netlisting.
|
||||
primitive symbols are symbols that do not have a schematic representation, examples are the nmos and pmos transistors in first schematic.
|
||||
they should have a <kbd>format</kbd> property
|
||||
that defines how the symbol should be translated to spice netlist. See the relevant <a href="symbol_property_syntax.html">schem manual page</a>.
|
||||
<br>
|
||||
Subcircuit symbols are symbols that translate to spice as a .subckt calls.
|
||||
An example is the LATESN symbol in above picture.
|
||||
Xschem convention is that subcircuit symbol instances have a name
|
||||
attribute that begins with 'X' or 'x'. As with primitive symbols they also have a <kbd>format</kbd> global attribute, but the
|
||||
<kbd>type=subcircuit</kbd> attribute states it is a subcircuit instance. After producing the instance call
|
||||
(for example <kbd>X1 net1 net2 net3 ... subcircuit_name)</kbd>) for all instances of this symbol a .subckt expansion is also produced:
|
||||
</p>
|
||||
<pre class="code">
|
||||
.subckt subcircuit_name pin1 pin2 pin3 ...
|
||||
...
|
||||
...
|
||||
.ends
|
||||
</pre>
|
||||
<p>
|
||||
After doing the conversion with <kbd>gschemtoxschem.awk</kbd> you should check your schematics and symbols and make the necessary corrections.<br>
|
||||
In particular you should check that schematic pins match symbol pins, regarding pin name and direction. Xschem standard way is to use
|
||||
<kbd>ipin.sym, opin.sym, iopin.sch</kbd> for input, output, inout pins, respectively.
|
||||
Following image shows the original converted schematic and the hand-modified schematic with the proper pins. Note that VDD/GND pins have been removed
|
||||
since the LATESN symbol does not have such supply pins. In spice netlist VDD/GND to the subcircuit is in this particular case passed via net-assign.
|
||||
</p>
|
||||
<img src = "tutorial_gschemtoxschem_03.png">
|
||||
<br>
|
||||
|
||||
|
||||
<!-- end of slide -->
|
||||
<div class="filler"></div>
|
||||
</div>
|
||||
|
||||
<!-- frame footer -->
|
||||
<iframe seamless src="xschem_footer.html" class="footer_iframe" >
|
||||
</body>
|
||||
</html>
|
||||
|
||||
Binary file not shown.
|
After Width: | Height: | Size: 129 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 49 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 110 KiB |
|
|
@ -52,6 +52,7 @@
|
|||
<li><a href="tutorial_busses.html">Use bus / vector notation for signal bundles / arrays of instances</a></li>
|
||||
<li><a href="tutorial_ngspice_backannotation.html">Backannotation of Ngspice simulation data into xschem</a></li>
|
||||
<li><a href="tutorial_symgen.html">Use symgen.awk to create symbols from 'djboxsym' compatible text files</a></li>
|
||||
<li><a href="tutorial_gschemtoxschem.html">Translate GEDA gschem/lepton-schematic schematics and symbols to xschem.</a></li>
|
||||
<li><a href="https://xschem.sourceforge.io/stefan/xschem_man/video_tutorials/install_xschem_sky130_and_ngspice.mp4">[Video] Install Xschem, Xschem_sky130, skywater-pdk and ngspice: step by step instructions</a></li>
|
||||
<li><a href="https://xschem.sourceforge.io/stefan/xschem_man/video_tutorials/install_xschem_and_open_pdks.mp4">[Video] Second version, Install Xschem and open_pdks for skywater 130 design</a></li>
|
||||
<li><a href="https://xschem.sourceforge.io/stefan/xschem_man/video_tutorials/editing_and_sim.mp4">[Video] Editing commands and simulation</a></li>
|
||||
|
|
|
|||
|
|
@ -45,6 +45,7 @@ FNR==1{
|
|||
pinseq=0
|
||||
max_pinseq = 0
|
||||
template_attrs=""
|
||||
extra = extra_format = extra_pinnumber = ""
|
||||
delete slotdef
|
||||
numslots=""
|
||||
}
|
||||
|
|
@ -102,7 +103,6 @@ FNR==1{
|
|||
if($0 ~/numslots=/) {
|
||||
numslots = $0
|
||||
sub(/numslots=/,"", numslots)
|
||||
template_attrs = template_attrs $0 "\n"
|
||||
continue
|
||||
}
|
||||
if($0 ~/net=/) {
|
||||
|
|
@ -111,16 +111,27 @@ FNR==1{
|
|||
net[++net_assign] = tmp
|
||||
continue
|
||||
}
|
||||
template_attrs = template_attrs escape_chars($0) "\n"
|
||||
template_attrs = template_attrs escape_chars($0) " "
|
||||
save = $0
|
||||
|
||||
|
||||
#### 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
|
||||
}
|
||||
|
||||
sub(/^device=/, "type=")
|
||||
if ($0 ~/^value=IO/) { # inconsistency in io-1.sym
|
||||
$0 = "type=IO"
|
||||
}
|
||||
if ($0 ~/^type=/) {
|
||||
if($0 ~/=INPUT/) {pin = 1; sub(/=.*/, "=ipin"); template_attrs = template_attrs "lab=xxx\n"}
|
||||
if($0 ~/=OUTPUT/) {pin = 1; sub(/=.*/, "=opin"); template_attrs = template_attrs "lab=xxx\n"}
|
||||
if($0 ~/=IO/) {pin = 1; sub(/=.*/, "=iopin"); template_attrs = template_attrs "lab=xxx\n"}
|
||||
if($0 ~/=INPUT/) {pin = 1; sub(/=.*/, "=ipin"); template_attrs = template_attrs "lab=xxx "}
|
||||
if($0 ~/=OUTPUT/) {pin = 1; sub(/=.*/, "=opin"); template_attrs = template_attrs "lab=xxx "}
|
||||
if($0 ~/=IO/) {pin = 1; sub(/=.*/, "=iopin"); template_attrs = template_attrs "lab=xxx "}
|
||||
if(is_symbol && has_schematic) global_attrs = "type=subcircuit\n" global_attrs
|
||||
else global_attrs = $0 "\n" global_attrs
|
||||
}
|
||||
|
|
|
|||
24
src/xschemrc
24
src/xschemrc
|
|
@ -35,18 +35,18 @@
|
|||
# set XSCHEM_LIBRARY_PATH {}
|
||||
# append XSCHEM_LIBRARY_PATH :~/.xschem/xschem_library
|
||||
# append XSCHEM_LIBRARY_PATH :${XSCHEM_SHAREDIR}/xschem_library/devices
|
||||
# append XSCHEM_LIBRARY_PATH ${xschem_doc_dir}/examples
|
||||
# append XSCHEM_LIBRARY_PATH ${xschem_doc_dir}/ngspice
|
||||
# append XSCHEM_LIBRARY_PATH ${xschem_doc_dir}/xschem_simulator
|
||||
# append XSCHEM_LIBRARY_PATH ${xschem_doc_dir}/rom8k
|
||||
# append XSCHEM_LIBRARY_PATH ${xschem_doc_dir}/logic
|
||||
# append XSCHEM_LIBRARY_PATH ${xschem_doc_dir}/pcb
|
||||
# append XSCHEM_LIBRARY_PATH ${xschem_doc_dir}/binto7seg
|
||||
# append XSCHEM_LIBRARY_PATH ${xschem_doc_dir}/symgen
|
||||
# append XSCHEM_LIBRARY_PATH ${xschem_doc_dir}/xTAG
|
||||
# append XSCHEM_LIBRARY_PATH ${xschem_doc_dir}/rulz-r8c33
|
||||
# append XSCHEM_LIBRARY_PATH ${xschem_doc_dir}/gschem_import
|
||||
# append XSCHEM_LIBRARY_PATH ${xschem_doc_dir}/gschem_import/sym
|
||||
# append XSCHEM_LIBRARY_PATH :${xschem_doc_dir}/examples
|
||||
# append XSCHEM_LIBRARY_PATH :${xschem_doc_dir}/ngspice
|
||||
# append XSCHEM_LIBRARY_PATH :${xschem_doc_dir}/xschem_simulator
|
||||
# append XSCHEM_LIBRARY_PATH :${xschem_doc_dir}/rom8k
|
||||
# append XSCHEM_LIBRARY_PATH :${xschem_doc_dir}/logic
|
||||
# append XSCHEM_LIBRARY_PATH :${xschem_doc_dir}/pcb
|
||||
# append XSCHEM_LIBRARY_PATH :${xschem_doc_dir}/binto7seg
|
||||
# append XSCHEM_LIBRARY_PATH :${xschem_doc_dir}/symgen
|
||||
# append XSCHEM_LIBRARY_PATH :${xschem_doc_dir}/xTAG
|
||||
# append XSCHEM_LIBRARY_PATH :${xschem_doc_dir}/rulz-r8c33
|
||||
# append XSCHEM_LIBRARY_PATH :${xschem_doc_dir}/gschem_import
|
||||
# append XSCHEM_LIBRARY_PATH :${xschem_doc_dir}/gschem_import/sym
|
||||
|
||||
#### For Windows, use ; instead of :, and enclosed pathname with ""
|
||||
# append XSCHEM_LIBRARY_PATH ";${XSCHEM_SHAREDIR}/../xschem_library"
|
||||
|
|
|
|||
|
|
@ -1,14 +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\\"
|
||||
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
|
||||
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
|
||||
GND=GND
|
||||
"
|
||||
tedax_format="footprint @name @footprint
|
||||
|
|
@ -17,7 +9,7 @@ device @name @device
|
|||
@comptag"
|
||||
format="@name @pinlist @value @Vcc @GND"
|
||||
|
||||
extra="Vcc GND"
|
||||
extra="device footprint description Vcc GND"
|
||||
extra_pinnumber="8 4"
|
||||
}
|
||||
G {}
|
||||
|
|
|
|||
|
|
@ -1,17 +1,14 @@
|
|||
v {xschem version=3.0.0 file_version=1.2}
|
||||
K {type=7414
|
||||
template="slot=1
|
||||
numslots=6
|
||||
device=7414
|
||||
name=U?
|
||||
pins=14
|
||||
"
|
||||
template="slot=1 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 {}
|
||||
|
|
|
|||
|
|
@ -1,14 +1,14 @@
|
|||
v {xschem version=3.0.0 file_version=1.2}
|
||||
K {type=NPN_TRANSISTOR
|
||||
template="device=NPN_TRANSISTOR
|
||||
name=Q?
|
||||
"
|
||||
template="device=NPN_TRANSISTOR name=Q? "
|
||||
tedax_format="footprint @name @footprint
|
||||
value @name @value
|
||||
device @name @device
|
||||
@comptag"
|
||||
format="@name @pinlist @value "
|
||||
|
||||
device
|
||||
|
||||
}
|
||||
G {}
|
||||
V {}
|
||||
|
|
|
|||
|
|
@ -1,14 +1,14 @@
|
|||
v {xschem version=3.0.0 file_version=1.2}
|
||||
K {type=NPN_TRANSISTOR_subcircuit
|
||||
template="device=NPN_TRANSISTOR_subcircuit
|
||||
name=X?
|
||||
"
|
||||
template="device=NPN_TRANSISTOR_subcircuit name=X? "
|
||||
tedax_format="footprint @name @footprint
|
||||
value @name @value
|
||||
device @name @device
|
||||
@comptag"
|
||||
format="@name @pinlist @value "
|
||||
|
||||
device
|
||||
|
||||
}
|
||||
G {}
|
||||
V {}
|
||||
|
|
|
|||
|
|
@ -1,17 +1,14 @@
|
|||
v {xschem version=3.0.0 file_version=1.2}
|
||||
K {type=CAPACITOR
|
||||
template="device=CAPACITOR
|
||||
name=C?
|
||||
description=capacitor
|
||||
numslots=0
|
||||
symversion=0.1
|
||||
"
|
||||
template="device=CAPACITOR name=C? description=capacitor symversion=0.1 "
|
||||
tedax_format="footprint @name @footprint
|
||||
value @name @value
|
||||
device @name @device
|
||||
@comptag"
|
||||
format="@name @pinlist @value "
|
||||
|
||||
device description
|
||||
|
||||
}
|
||||
G {}
|
||||
V {}
|
||||
|
|
|
|||
|
|
@ -1,17 +1,14 @@
|
|||
v {xschem version=3.0.0 file_version=1.2}
|
||||
K {type=POLARIZED_CAPACITOR
|
||||
template="device=POLARIZED_CAPACITOR
|
||||
name=C?
|
||||
description=\\"polarized capacitor\\"
|
||||
numslots=0
|
||||
symversion=0.1
|
||||
"
|
||||
template="device=POLARIZED_CAPACITOR name=C? description=\\"polarized capacitor\\" symversion=0.1 "
|
||||
tedax_format="footprint @name @footprint
|
||||
value @name @value
|
||||
device @name @device
|
||||
@comptag"
|
||||
format="@name @pinlist @value "
|
||||
|
||||
device description
|
||||
|
||||
}
|
||||
G {}
|
||||
V {}
|
||||
|
|
|
|||
|
|
@ -1,16 +1,14 @@
|
|||
v {xschem version=3.0.0 file_version=1.2}
|
||||
K {type=CONNECTOR_4
|
||||
template="device=CONNECTOR_4
|
||||
name=CONN?
|
||||
class=IO
|
||||
pins=4
|
||||
"
|
||||
template="device=CONNECTOR_4 name=CONN? class=IO pins=4 "
|
||||
tedax_format="footprint @name @footprint
|
||||
value @name @value
|
||||
device @name @device
|
||||
@comptag"
|
||||
format="@name @pinlist @value "
|
||||
|
||||
device
|
||||
|
||||
}
|
||||
G {}
|
||||
V {}
|
||||
|
|
|
|||
|
|
@ -1,16 +1,14 @@
|
|||
v {xschem version=3.0.0 file_version=1.2}
|
||||
K {type=CONNECTOR_8
|
||||
template="device=CONNECTOR_8
|
||||
name=CONN?
|
||||
class=IO
|
||||
pins=8
|
||||
"
|
||||
template="device=CONNECTOR_8 name=CONN? class=IO pins=8 "
|
||||
tedax_format="footprint @name @footprint
|
||||
value @name @value
|
||||
device @name @device
|
||||
@comptag"
|
||||
format="@name @pinlist @value "
|
||||
|
||||
device
|
||||
|
||||
}
|
||||
G {}
|
||||
V {}
|
||||
|
|
|
|||
|
|
@ -1,14 +1,14 @@
|
|||
v {xschem version=3.0.0 file_version=1.2}
|
||||
K {type=none
|
||||
template="graphical=1
|
||||
device=none
|
||||
"
|
||||
template="graphical=1 device=none "
|
||||
tedax_format="footprint @name @footprint
|
||||
value @name @value
|
||||
device @name @device
|
||||
@comptag"
|
||||
format="@name @pinlist @value "
|
||||
|
||||
device
|
||||
|
||||
}
|
||||
G {}
|
||||
V {}
|
||||
|
|
|
|||
|
|
@ -1,17 +1,14 @@
|
|||
v {xschem version=3.0.0 file_version=1.2}
|
||||
K {type=CRYSTAL
|
||||
template="device=CRYSTAL
|
||||
name=U?
|
||||
description=crystal
|
||||
numslots=0
|
||||
symversion=0.1
|
||||
"
|
||||
template="device=CRYSTAL name=U? description=crystal symversion=0.1 "
|
||||
tedax_format="footprint @name @footprint
|
||||
value @name @value
|
||||
device @name @device
|
||||
@comptag"
|
||||
format="@name @pinlist @value "
|
||||
|
||||
device description
|
||||
|
||||
}
|
||||
G {}
|
||||
V {}
|
||||
|
|
|
|||
|
|
@ -1,15 +1,14 @@
|
|||
v {xschem version=3.0.0 file_version=1.2}
|
||||
K {type=cy7c64603-52nc
|
||||
template="device=cy7c64603-52nc
|
||||
name=U?
|
||||
footprint=cy7c64603_qfp
|
||||
"
|
||||
template="device=cy7c64603-52nc name=U? footprint=cy7c64603_qfp "
|
||||
tedax_format="footprint @name @footprint
|
||||
value @name @value
|
||||
device @name @device
|
||||
@comptag"
|
||||
format="@name @pinlist @value "
|
||||
|
||||
device footprint
|
||||
|
||||
}
|
||||
G {}
|
||||
V {}
|
||||
|
|
|
|||
|
|
@ -1,14 +1,14 @@
|
|||
v {xschem version=3.0.0 file_version=1.2}
|
||||
K {type=DIODE
|
||||
template="device=DIODE
|
||||
name=D?
|
||||
"
|
||||
template="device=DIODE name=D? "
|
||||
tedax_format="footprint @name @footprint
|
||||
value @name @value
|
||||
device @name @device
|
||||
@comptag"
|
||||
format="@name @pinlist @value "
|
||||
|
||||
device
|
||||
|
||||
}
|
||||
G {}
|
||||
V {}
|
||||
|
|
|
|||
|
|
@ -1,14 +1,14 @@
|
|||
v {xschem version=3.0.0 file_version=1.2}
|
||||
K {type=none
|
||||
template="name=S?
|
||||
device=none
|
||||
"
|
||||
template="name=S? device=none "
|
||||
tedax_format="footprint @name @footprint
|
||||
value @name @value
|
||||
device @name @device
|
||||
@comptag"
|
||||
format="@name @pinlist @value "
|
||||
|
||||
device
|
||||
|
||||
}
|
||||
G {}
|
||||
V {}
|
||||
|
|
|
|||
|
|
@ -1,14 +1,14 @@
|
|||
v {xschem version=3.0.0 file_version=1.2}
|
||||
K {type=none
|
||||
template="name=S?
|
||||
device=none
|
||||
"
|
||||
template="name=S? device=none "
|
||||
tedax_format="footprint @name @footprint
|
||||
value @name @value
|
||||
device @name @device
|
||||
@comptag"
|
||||
format="@name @pinlist @value "
|
||||
|
||||
device
|
||||
|
||||
}
|
||||
G {}
|
||||
V {}
|
||||
|
|
|
|||
|
|
@ -1,14 +1,14 @@
|
|||
v {xschem version=3.0.0 file_version=1.2}
|
||||
K {type=none
|
||||
template="name=S?
|
||||
device=none
|
||||
"
|
||||
template="name=S? device=none "
|
||||
tedax_format="footprint @name @footprint
|
||||
value @name @value
|
||||
device @name @device
|
||||
@comptag"
|
||||
format="@name @pinlist @value "
|
||||
|
||||
device
|
||||
|
||||
}
|
||||
G {}
|
||||
V {}
|
||||
|
|
|
|||
|
|
@ -1,14 +1,14 @@
|
|||
v {xschem version=3.0.0 file_version=1.2}
|
||||
K {type=none
|
||||
template="name=S?
|
||||
device=none
|
||||
"
|
||||
template="name=S? device=none "
|
||||
tedax_format="footprint @name @footprint
|
||||
value @name @value
|
||||
device @name @device
|
||||
@comptag"
|
||||
format="@name @pinlist @value "
|
||||
|
||||
device
|
||||
|
||||
}
|
||||
G {}
|
||||
V {}
|
||||
|
|
|
|||
|
|
@ -1,14 +1,14 @@
|
|||
v {xschem version=3.0.0 file_version=1.2}
|
||||
K {type=HEADER20
|
||||
template="device=HEADER20
|
||||
name=J?
|
||||
"
|
||||
template="device=HEADER20 name=J? "
|
||||
tedax_format="footprint @name @footprint
|
||||
value @name @value
|
||||
device @name @device
|
||||
@comptag"
|
||||
format="@name @pinlist @value "
|
||||
|
||||
device
|
||||
|
||||
}
|
||||
G {}
|
||||
V {}
|
||||
|
|
|
|||
|
|
@ -1,9 +1,8 @@
|
|||
v {xschem version=3.0.0 file_version=1.2}
|
||||
K {type=ipin
|
||||
template="device=INPUT
|
||||
lab=xxx
|
||||
name=pinlabel
|
||||
"
|
||||
template="device=INPUT lab=xxx name=pinlabel "
|
||||
|
||||
device
|
||||
|
||||
}
|
||||
G {}
|
||||
|
|
|
|||
|
|
@ -1,17 +1,14 @@
|
|||
v {xschem version=3.0.0 file_version=1.2}
|
||||
K {type=INDUCTOR
|
||||
template="device=INDUCTOR
|
||||
name=L?
|
||||
description=inductor
|
||||
numslots=0
|
||||
symversion=0.1
|
||||
"
|
||||
template="device=INDUCTOR name=L? description=inductor 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,14 @@
|
|||
v {xschem version=3.0.0 file_version=1.2}
|
||||
K {type=JUMPER
|
||||
template="device=JUMPER
|
||||
name=J?
|
||||
"
|
||||
template="device=JUMPER name=J? "
|
||||
tedax_format="footprint @name @footprint
|
||||
value @name @value
|
||||
device @name @device
|
||||
@comptag"
|
||||
format="@name @pinlist @value "
|
||||
|
||||
device
|
||||
|
||||
}
|
||||
G {}
|
||||
V {}
|
||||
|
|
|
|||
|
|
@ -1,15 +1,14 @@
|
|||
v {xschem version=3.0.0 file_version=1.2}
|
||||
K {type=MAX882
|
||||
template="name=U?
|
||||
device=MAX882
|
||||
footprint=SO8
|
||||
"
|
||||
template="name=U? device=MAX882 footprint=SO8 "
|
||||
tedax_format="footprint @name @footprint
|
||||
value @name @value
|
||||
device @name @device
|
||||
@comptag"
|
||||
format="@name @pinlist @value "
|
||||
|
||||
device footprint
|
||||
|
||||
}
|
||||
G {}
|
||||
V {}
|
||||
|
|
|
|||
|
|
@ -1,9 +1,8 @@
|
|||
v {xschem version=3.0.0 file_version=1.2}
|
||||
K {type=opin
|
||||
template="device=OUTPUT
|
||||
lab=xxx
|
||||
name=pinlabel
|
||||
"
|
||||
template="device=OUTPUT lab=xxx name=pinlabel "
|
||||
|
||||
device
|
||||
|
||||
}
|
||||
G {}
|
||||
|
|
|
|||
|
|
@ -1,16 +1,14 @@
|
|||
v {xschem version=3.0.0 file_version=1.2}
|
||||
K {type=RESISTOR
|
||||
template="device=RESISTOR
|
||||
name=R?
|
||||
pins=2
|
||||
class=DISCRETE
|
||||
"
|
||||
template="device=RESISTOR name=R? pins=2 class=DISCRETE "
|
||||
tedax_format="footprint @name @footprint
|
||||
value @name @value
|
||||
device @name @device
|
||||
@comptag"
|
||||
format="@name @pinlist @value "
|
||||
|
||||
device
|
||||
|
||||
}
|
||||
G {}
|
||||
V {}
|
||||
|
|
|
|||
|
|
@ -1,14 +1,14 @@
|
|||
v {xschem version=3.0.0 file_version=1.2}
|
||||
K {type=RESISTOR
|
||||
template="device=RESISTOR
|
||||
name=R?
|
||||
"
|
||||
template="device=RESISTOR name=R? "
|
||||
tedax_format="footprint @name @footprint
|
||||
value @name @value
|
||||
device @name @device
|
||||
@comptag"
|
||||
format="@name @pinlist @value "
|
||||
|
||||
device
|
||||
|
||||
}
|
||||
G {}
|
||||
V {}
|
||||
|
|
|
|||
|
|
@ -1,14 +1,14 @@
|
|||
v {xschem version=3.0.0 file_version=1.2}
|
||||
K {type=VARIABLE_RESISTOR
|
||||
template="device=VARIABLE_RESISTOR
|
||||
name=R?
|
||||
"
|
||||
template="device=VARIABLE_RESISTOR name=R? "
|
||||
tedax_format="footprint @name @footprint
|
||||
value @name @value
|
||||
device @name @device
|
||||
@comptag"
|
||||
format="@name @pinlist @value "
|
||||
|
||||
device
|
||||
|
||||
}
|
||||
G {}
|
||||
V {}
|
||||
|
|
|
|||
|
|
@ -1,15 +1,14 @@
|
|||
v {xschem version=3.0.0 file_version=1.2}
|
||||
K {type=SN75240PW
|
||||
template="name=U?
|
||||
device=SN75240PW
|
||||
footprint=SO8
|
||||
"
|
||||
template="name=U? device=SN75240PW footprint=SO8 "
|
||||
tedax_format="footprint @name @footprint
|
||||
value @name @value
|
||||
device @name @device
|
||||
@comptag"
|
||||
format="@name @pinlist @value "
|
||||
|
||||
device footprint
|
||||
|
||||
}
|
||||
G {}
|
||||
V {}
|
||||
|
|
|
|||
|
|
@ -1,16 +1,14 @@
|
|||
v {xschem version=3.0.0 file_version=1.2}
|
||||
K {type=directive
|
||||
template="device=directive
|
||||
name=A?
|
||||
file=unknown
|
||||
value=unknown
|
||||
"
|
||||
template="device=directive name=A? file=unknown value=unknown "
|
||||
tedax_format="footprint @name @footprint
|
||||
value @name @value
|
||||
device @name @device
|
||||
@comptag"
|
||||
format="@name @pinlist @value "
|
||||
|
||||
device
|
||||
|
||||
}
|
||||
G {}
|
||||
V {}
|
||||
|
|
|
|||
|
|
@ -1,15 +1,14 @@
|
|||
v {xschem version=3.0.0 file_version=1.2}
|
||||
K {type=include
|
||||
template="device=include
|
||||
name=A?
|
||||
file=unknown
|
||||
"
|
||||
template="device=include name=A? file=unknown "
|
||||
tedax_format="footprint @name @footprint
|
||||
value @name @value
|
||||
device @name @device
|
||||
@comptag"
|
||||
format="@name @pinlist @value "
|
||||
|
||||
device
|
||||
|
||||
}
|
||||
G {}
|
||||
V {}
|
||||
|
|
|
|||
|
|
@ -1,16 +1,14 @@
|
|||
v {xschem version=3.0.0 file_version=1.2}
|
||||
K {type=model
|
||||
template="device=model
|
||||
name=A?
|
||||
model-name=unknown
|
||||
file=unknown
|
||||
"
|
||||
template="device=model name=A? model-name=unknown file=unknown "
|
||||
tedax_format="footprint @name @footprint
|
||||
value @name @value
|
||||
device @name @device
|
||||
@comptag"
|
||||
format="@name @pinlist @value "
|
||||
|
||||
device
|
||||
|
||||
}
|
||||
G {}
|
||||
V {}
|
||||
|
|
|
|||
|
|
@ -1,14 +1,14 @@
|
|||
v {xschem version=3.0.0 file_version=1.2}
|
||||
K {type=spice-IO
|
||||
template="device=spice-IO
|
||||
name=P?
|
||||
"
|
||||
template="device=spice-IO name=P? "
|
||||
tedax_format="footprint @name @footprint
|
||||
value @name @value
|
||||
device @name @device
|
||||
@comptag"
|
||||
format="@name @pinlist @value "
|
||||
|
||||
device
|
||||
|
||||
}
|
||||
G {}
|
||||
V {}
|
||||
|
|
|
|||
|
|
@ -1,15 +1,14 @@
|
|||
v {xschem version=3.0.0 file_version=1.2}
|
||||
K {type=spice-subcircuit-LL
|
||||
template="device=spice-subcircuit-LL
|
||||
name=A?
|
||||
model-name=unknown
|
||||
"
|
||||
template="device=spice-subcircuit-LL name=A? model-name=unknown "
|
||||
tedax_format="footprint @name @footprint
|
||||
value @name @value
|
||||
device @name @device
|
||||
@comptag"
|
||||
format="@name @pinlist @value "
|
||||
|
||||
device
|
||||
|
||||
}
|
||||
G {}
|
||||
V {}
|
||||
|
|
|
|||
|
|
@ -1,15 +1,14 @@
|
|||
v {xschem version=3.0.0 file_version=1.2}
|
||||
K {type=10K10LC84
|
||||
template="device=10K10LC84
|
||||
footprint=PLCC84
|
||||
name=U?
|
||||
"
|
||||
template="device=10K10LC84 footprint=PLCC84 name=U? "
|
||||
tedax_format="footprint @name @footprint
|
||||
value @name @value
|
||||
device @name @device
|
||||
@comptag"
|
||||
format="@name @pinlist @value "
|
||||
|
||||
device footprint
|
||||
|
||||
}
|
||||
G {}
|
||||
V {}
|
||||
|
|
|
|||
|
|
@ -1,14 +1,14 @@
|
|||
v {xschem version=3.0.0 file_version=1.2}
|
||||
K {type=12SA7
|
||||
template="device=12SA7
|
||||
name=U?
|
||||
"
|
||||
template="device=12SA7 name=U? "
|
||||
tedax_format="footprint @name @footprint
|
||||
value @name @value
|
||||
device @name @device
|
||||
@comptag"
|
||||
format="@name @pinlist @value "
|
||||
|
||||
device
|
||||
|
||||
}
|
||||
G {}
|
||||
V {}
|
||||
|
|
|
|||
|
|
@ -1,14 +1,14 @@
|
|||
v {xschem version=3.0.0 file_version=1.2}
|
||||
K {type=12SK7
|
||||
template="device=12SK7
|
||||
name=U?
|
||||
"
|
||||
template="device=12SK7 name=U? "
|
||||
tedax_format="footprint @name @footprint
|
||||
value @name @value
|
||||
device @name @device
|
||||
@comptag"
|
||||
format="@name @pinlist @value "
|
||||
|
||||
device
|
||||
|
||||
}
|
||||
G {}
|
||||
V {}
|
||||
|
|
|
|||
|
|
@ -1,14 +1,14 @@
|
|||
v {xschem version=3.0.0 file_version=1.2}
|
||||
K {type=12SQ7
|
||||
template="device=12SQ7
|
||||
name=U?
|
||||
"
|
||||
template="device=12SQ7 name=U? "
|
||||
tedax_format="footprint @name @footprint
|
||||
value @name @value
|
||||
device @name @device
|
||||
@comptag"
|
||||
format="@name @pinlist @value "
|
||||
|
||||
device
|
||||
|
||||
}
|
||||
G {}
|
||||
V {}
|
||||
|
|
|
|||
|
|
@ -1,11 +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\\"
|
||||
numslots=0
|
||||
Vcc=Vcc
|
||||
template="device=22V10 name=U? footprint=DIP24 description=\\"Programmable Logic Device\\" Vcc=Vcc
|
||||
GND=GND
|
||||
"
|
||||
tedax_format="footprint @name @footprint
|
||||
|
|
@ -14,7 +9,7 @@ device @name @device
|
|||
@comptag"
|
||||
format="@name @pinlist @value @Vcc @GND"
|
||||
|
||||
extra="Vcc GND"
|
||||
extra="device footprint description Vcc GND"
|
||||
extra_pinnumber="24 12"
|
||||
}
|
||||
G {}
|
||||
|
|
|
|||
|
|
@ -1,19 +1,14 @@
|
|||
v {xschem version=3.0.0 file_version=1.2}
|
||||
K {type=22V10-PLCC
|
||||
template="footprint=PLCC28
|
||||
pins=28
|
||||
device=22V10-PLCC
|
||||
class=IC
|
||||
name=U?
|
||||
NB=\\"Pins 1,8,15,22 For ISP only\\"
|
||||
NB=\\"Ground Pin 22 on PALCE\\"
|
||||
"
|
||||
template="footprint=PLCC28 pins=28 device=22V10-PLCC class=IC name=U? NB=\\"Pins 1,8,15,22 For ISP only\\" NB=\\"Ground Pin 22 on PALCE\\" "
|
||||
tedax_format="footprint @name @footprint
|
||||
value @name @value
|
||||
device @name @device
|
||||
@comptag"
|
||||
format="@name @pinlist @value "
|
||||
|
||||
footprint device
|
||||
|
||||
}
|
||||
G {}
|
||||
V {}
|
||||
|
|
|
|||
|
|
@ -1,14 +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\\"
|
||||
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
|
||||
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
|
||||
GND=GND
|
||||
"
|
||||
tedax_format="footprint @name @footprint
|
||||
|
|
@ -17,7 +9,7 @@ device @name @device
|
|||
@comptag"
|
||||
format="@name @pinlist @value @Vcc @GND"
|
||||
|
||||
extra="Vcc GND"
|
||||
extra="device footprint description Vcc GND"
|
||||
extra_pinnumber="8 4"
|
||||
}
|
||||
G {}
|
||||
|
|
|
|||
|
|
@ -1,12 +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\\"
|
||||
numslots=0
|
||||
author=\\"Jeff Jackowski <jeffj@ro.com>\\"
|
||||
Vcc=Vcc
|
||||
template="device=25Cxx name=U? footprint=DIP8 description=\\"SPI serial cmos eeprom\\" author=\\"Jeff Jackowski <jeffj@ro.com>\\" Vcc=Vcc
|
||||
GND=GND
|
||||
"
|
||||
tedax_format="footprint @name @footprint
|
||||
|
|
@ -15,7 +9,7 @@ device @name @device
|
|||
@comptag"
|
||||
format="@name @pinlist @value @Vcc @GND"
|
||||
|
||||
extra="Vcc GND"
|
||||
extra="device footprint description Vcc GND"
|
||||
extra_pinnumber="8 4"
|
||||
}
|
||||
G {}
|
||||
|
|
|
|||
|
|
@ -1,14 +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\\"
|
||||
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
|
||||
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
|
||||
GND=GND
|
||||
"
|
||||
tedax_format="footprint @name @footprint
|
||||
|
|
@ -17,7 +9,7 @@ device @name @device
|
|||
@comptag"
|
||||
format="@name @pinlist @value @Vcc @GND"
|
||||
|
||||
extra="Vcc GND"
|
||||
extra="device footprint description Vcc GND"
|
||||
extra_pinnumber="28 14"
|
||||
}
|
||||
G {}
|
||||
|
|
|
|||
|
|
@ -1,12 +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\\"
|
||||
numslots=0
|
||||
author=\\"Jens-Peter Kaps <kapsATwpi.de>\\"
|
||||
Vcc=Vcc
|
||||
template="device=2732 name=U? footprint=DIP24 description=\\"32K (4Kx8) CMOS EPROM\\" author=\\"Jens-Peter Kaps <kapsATwpi.de>\\" Vcc=Vcc
|
||||
GND=GND
|
||||
"
|
||||
tedax_format="footprint @name @footprint
|
||||
|
|
@ -15,7 +9,7 @@ device @name @device
|
|||
@comptag"
|
||||
format="@name @pinlist @value @Vcc @GND"
|
||||
|
||||
extra="Vcc GND"
|
||||
extra="device footprint description Vcc GND"
|
||||
extra_pinnumber="24 12"
|
||||
}
|
||||
G {}
|
||||
|
|
|
|||
|
|
@ -1,14 +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\\"
|
||||
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
|
||||
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
|
||||
GND=GND
|
||||
"
|
||||
tedax_format="footprint @name @footprint
|
||||
|
|
@ -17,7 +9,7 @@ device @name @device
|
|||
@comptag"
|
||||
format="@name @pinlist @value @Vcc @GND"
|
||||
|
||||
extra="Vcc GND"
|
||||
extra="device footprint description Vcc GND"
|
||||
extra_pinnumber="28 14"
|
||||
}
|
||||
G {}
|
||||
|
|
|
|||
|
|
@ -1,16 +1,6 @@
|
|||
v {xschem version=3.0.0 file_version=1.2}
|
||||
K {type=27C2001
|
||||
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
|
||||
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
|
||||
"
|
||||
tedax_format="footprint @name @footprint
|
||||
value @name @value
|
||||
|
|
@ -18,7 +8,7 @@ device @name @device
|
|||
@comptag"
|
||||
format="@name @pinlist @value @GND"
|
||||
|
||||
extra="GND"
|
||||
extra="footprint description device GND"
|
||||
extra_pinnumber="16"
|
||||
}
|
||||
G {}
|
||||
|
|
|
|||
|
|
@ -1,20 +1,14 @@
|
|||
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\\"
|
||||
numslots=0
|
||||
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\\" 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 {}
|
||||
|
|
|
|||
|
|
@ -1,14 +1,14 @@
|
|||
v {xschem version=3.0.0 file_version=1.2}
|
||||
K {type=2N2222
|
||||
template="device=2N2222
|
||||
name=Q?
|
||||
"
|
||||
template="device=2N2222 name=Q? "
|
||||
tedax_format="footprint @name @footprint
|
||||
value @name @value
|
||||
device @name @device
|
||||
@comptag"
|
||||
format="@name @pinlist @value "
|
||||
|
||||
device
|
||||
|
||||
}
|
||||
G {}
|
||||
V {}
|
||||
|
|
|
|||
|
|
@ -1,14 +1,14 @@
|
|||
v {xschem version=3.0.0 file_version=1.2}
|
||||
K {type=2N3055
|
||||
template="device=2N3055
|
||||
name=Q?
|
||||
"
|
||||
template="device=2N3055 name=Q? "
|
||||
tedax_format="footprint @name @footprint
|
||||
value @name @value
|
||||
device @name @device
|
||||
@comptag"
|
||||
format="@name @pinlist @value "
|
||||
|
||||
device
|
||||
|
||||
}
|
||||
G {}
|
||||
V {}
|
||||
|
|
|
|||
|
|
@ -1,15 +1,14 @@
|
|||
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 "
|
||||
tedax_format="footprint @name @footprint
|
||||
value @name @value
|
||||
device @name @device
|
||||
@comptag"
|
||||
format="@name @pinlist @value "
|
||||
|
||||
device footprint
|
||||
|
||||
}
|
||||
G {}
|
||||
V {}
|
||||
|
|
|
|||
|
|
@ -1,16 +1,14 @@
|
|||
v {xschem version=3.0.0 file_version=1.2}
|
||||
K {type=2N3904
|
||||
template="device=2N3904
|
||||
name=Q?
|
||||
footprint=TO92
|
||||
numslots=0
|
||||
"
|
||||
template="device=2N3904 name=Q? footprint=TO92 "
|
||||
tedax_format="footprint @name @footprint
|
||||
value @name @value
|
||||
device @name @device
|
||||
@comptag"
|
||||
format="@name @pinlist @value "
|
||||
|
||||
device footprint
|
||||
|
||||
}
|
||||
G {}
|
||||
V {}
|
||||
|
|
|
|||
|
|
@ -1,18 +1,14 @@
|
|||
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
|
||||
numslots=0
|
||||
footprint=TO92
|
||||
"
|
||||
template="device=2N3906 name=Q? description=\\"2N3906 PNP transistor\\" documentation=http://www.fairchildsemi.com/pf/2N/2N3906.html footprint=TO92 "
|
||||
tedax_format="footprint @name @footprint
|
||||
value @name @value
|
||||
device @name @device
|
||||
@comptag"
|
||||
format="@name @pinlist @value "
|
||||
|
||||
device description footprint
|
||||
|
||||
}
|
||||
G {}
|
||||
V {}
|
||||
|
|
|
|||
|
|
@ -1,18 +1,14 @@
|
|||
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\\"
|
||||
numslots=0
|
||||
documentation=http://www.fairchildsemi.com/ds/2N/2N5245.pdf
|
||||
"
|
||||
template="device=2N5245 name=Q? footprint=TO92 description=\\"n-channel rf amplifier\\" 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,19 +1,14 @@
|
|||
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\\"
|
||||
numslots=2
|
||||
documentation=http://wwww.ges.cz/sheet/2/2n5911.pdf
|
||||
slot=1
|
||||
"
|
||||
template="device=2N5911 name=Q? footprint=TO78 description=\\"matched n-channel jfet pairs\\" 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 {}
|
||||
|
|
|
|||
|
|
@ -1,14 +1,14 @@
|
|||
v {xschem version=3.0.0 file_version=1.2}
|
||||
K {type=2S2K3
|
||||
template="device=2S2K3
|
||||
name=U?
|
||||
"
|
||||
template="device=2S2K3 name=U? "
|
||||
tedax_format="footprint @name @footprint
|
||||
value @name @value
|
||||
device @name @device
|
||||
@comptag"
|
||||
format="@name @pinlist @value "
|
||||
|
||||
device
|
||||
|
||||
}
|
||||
G {}
|
||||
V {}
|
||||
|
|
|
|||
|
|
@ -1,14 +1,14 @@
|
|||
v {xschem version=3.0.0 file_version=1.2}
|
||||
K {type=2PHASE-STEPPER-4LEADS
|
||||
template="device=2PHASE-STEPPER-4LEADS
|
||||
name=U?
|
||||
"
|
||||
template="device=2PHASE-STEPPER-4LEADS name=U? "
|
||||
tedax_format="footprint @name @footprint
|
||||
value @name @value
|
||||
device @name @device
|
||||
@comptag"
|
||||
format="@name @pinlist @value "
|
||||
|
||||
device
|
||||
|
||||
}
|
||||
G {}
|
||||
V {}
|
||||
|
|
|
|||
|
|
@ -1,14 +1,14 @@
|
|||
v {xschem version=3.0.0 file_version=1.2}
|
||||
K {type=2TRI
|
||||
template="device=2TRI
|
||||
name=U?
|
||||
"
|
||||
template="device=2TRI name=U? "
|
||||
tedax_format="footprint @name @footprint
|
||||
value @name @value
|
||||
device @name @device
|
||||
@comptag"
|
||||
format="@name @pinlist @value "
|
||||
|
||||
device
|
||||
|
||||
}
|
||||
G {}
|
||||
V {}
|
||||
|
|
|
|||
|
|
@ -1,18 +1,14 @@
|
|||
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
|
||||
numslots=0
|
||||
documentation=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 "
|
||||
tedax_format="footprint @name @footprint
|
||||
value @name @value
|
||||
device @name @device
|
||||
@comptag"
|
||||
format="@name @pinlist @value "
|
||||
|
||||
footprint description device
|
||||
|
||||
}
|
||||
G {}
|
||||
V {}
|
||||
|
|
|
|||
|
|
@ -1,14 +1,14 @@
|
|||
v {xschem version=3.0.0 file_version=1.2}
|
||||
K {type=35Z5GT
|
||||
template="device=35Z5GT
|
||||
name=U?
|
||||
"
|
||||
template="device=35Z5GT name=U? "
|
||||
tedax_format="footprint @name @footprint
|
||||
value @name @value
|
||||
device @name @device
|
||||
@comptag"
|
||||
format="@name @pinlist @value "
|
||||
|
||||
device
|
||||
|
||||
}
|
||||
G {}
|
||||
V {}
|
||||
|
|
|
|||
|
|
@ -1,19 +1,14 @@
|
|||
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\\"
|
||||
numslots=0
|
||||
"
|
||||
template="name=U? device=a3967lsb footprint=\\"SO24 .050\\" author=\\"m. dickens <marvindickens@bellsouth.net>\\" documentation=http://www.allegro.com description=\\"microstepping driver with translator\\" "
|
||||
tedax_format="footprint @name @footprint
|
||||
value @name @value
|
||||
device @name @device
|
||||
@comptag"
|
||||
format="@name @pinlist @value "
|
||||
|
||||
device footprint description
|
||||
|
||||
}
|
||||
G {}
|
||||
V {}
|
||||
|
|
|
|||
|
|
@ -1,16 +1,14 @@
|
|||
v {xschem version=3.0.0 file_version=1.2}
|
||||
K {type=A3967SLB
|
||||
template="device=A3967SLB
|
||||
name=U?
|
||||
footprint=\\"DW 24\\"
|
||||
symversion=1.0
|
||||
"
|
||||
template="device=A3967SLB name=U? footprint=\\"DW 24\\" symversion=1.0 "
|
||||
tedax_format="footprint @name @footprint
|
||||
value @name @value
|
||||
device @name @device
|
||||
@comptag"
|
||||
format="@name @pinlist @value "
|
||||
|
||||
device footprint
|
||||
|
||||
}
|
||||
G {}
|
||||
V {}
|
||||
|
|
|
|||
|
|
@ -1,14 +1,14 @@
|
|||
v {xschem version=3.0.0 file_version=1.2}
|
||||
K {type=3TRI
|
||||
template="device=3TRI
|
||||
name=U?
|
||||
"
|
||||
template="device=3TRI name=U? "
|
||||
tedax_format="footprint @name @footprint
|
||||
value @name @value
|
||||
device @name @device
|
||||
@comptag"
|
||||
format="@name @pinlist @value "
|
||||
|
||||
device
|
||||
|
||||
}
|
||||
G {}
|
||||
V {}
|
||||
|
|
|
|||
|
|
@ -1,11 +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\\"
|
||||
numslots=0
|
||||
VDD=VDD
|
||||
template="device=4000 name=U? footprint=DIP14 description=\\"2 NOR-gates with 3 inputs, 1 NOT-gate\\" VDD=VDD
|
||||
VSS=VSS
|
||||
"
|
||||
tedax_format="footprint @name @footprint
|
||||
|
|
@ -14,7 +9,7 @@ device @name @device
|
|||
@comptag"
|
||||
format="@name @pinlist @value @VDD @VSS"
|
||||
|
||||
extra="VDD VSS"
|
||||
extra="device footprint description VDD VSS"
|
||||
extra_pinnumber="14 7"
|
||||
}
|
||||
G {}
|
||||
|
|
|
|||
|
|
@ -1,11 +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\\"
|
||||
numslots=0
|
||||
VDD=VDD
|
||||
template="device=4000 name=U? footprint=DIP14 description=\\"2 NOR-gates with 3 inputs, 1 NOT-gate\\" VDD=VDD
|
||||
VSS=VSS
|
||||
"
|
||||
tedax_format="footprint @name @footprint
|
||||
|
|
@ -14,7 +9,7 @@ device @name @device
|
|||
@comptag"
|
||||
format="@name @pinlist @value @VDD @VSS"
|
||||
|
||||
extra="VDD VSS"
|
||||
extra="device footprint description VDD VSS"
|
||||
extra_pinnumber="14 7"
|
||||
}
|
||||
G {}
|
||||
|
|
|
|||
|
|
@ -1,12 +1,6 @@
|
|||
v {xschem version=3.0.0 file_version=1.2}
|
||||
K {type=4001
|
||||
template="device=4001
|
||||
slot=1
|
||||
numslots=4
|
||||
name=U?
|
||||
footprint=DIP14
|
||||
description=\\"4 NOR-gates with 2 inputs\\"
|
||||
VDD=VDD
|
||||
template="device=4001 slot=1 name=U? footprint=DIP14 description=\\"4 NOR-gates with 2 inputs\\" VDD=VDD
|
||||
VSS=VSS
|
||||
"
|
||||
tedax_format="footprint @name @footprint
|
||||
|
|
@ -15,7 +9,7 @@ device @name @device
|
|||
@comptag"
|
||||
format="@name @pinlist @value @VDD @VSS"
|
||||
|
||||
extra="VDD VSS"
|
||||
extra="device footprint description VDD VSS"
|
||||
extra_pinnumber="14 7"
|
||||
}
|
||||
G {}
|
||||
|
|
|
|||
|
|
@ -1,13 +1,6 @@
|
|||
v {xschem version=3.0.0 file_version=1.2}
|
||||
K {type=4002
|
||||
template="device=4002
|
||||
numslots=2
|
||||
slot=1
|
||||
footprint=DIP14
|
||||
description=\\"2 NOR-gates with 4 inputs\\"
|
||||
name=U?
|
||||
symversion=1.0
|
||||
VDD=VDD
|
||||
template="device=4002 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
|
||||
|
|
@ -16,7 +9,7 @@ device @name @device
|
|||
@comptag"
|
||||
format="@name @pinlist @value @VDD @VSS"
|
||||
|
||||
extra="VDD VSS"
|
||||
extra="device footprint description VDD VSS"
|
||||
extra_pinnumber="14 7"
|
||||
}
|
||||
G {}
|
||||
|
|
|
|||
|
|
@ -1,13 +1,6 @@
|
|||
v {xschem version=3.0.0 file_version=1.2}
|
||||
K {type=4002
|
||||
template="device=4002
|
||||
slot=1
|
||||
numslots=2
|
||||
name=U?
|
||||
footprint=DIP14
|
||||
description=\\"2 NOR gates with 4 inputs\\"
|
||||
symversion=0.1
|
||||
VDD=VDD
|
||||
template="device=4002 slot=1 name=U? footprint=DIP14 description=\\"2 NOR gates with 4 inputs\\" symversion=0.1 VDD=VDD
|
||||
VSS=VSS
|
||||
"
|
||||
tedax_format="footprint @name @footprint
|
||||
|
|
@ -16,7 +9,7 @@ device @name @device
|
|||
@comptag"
|
||||
format="@name @pinlist @value @VDD @VSS"
|
||||
|
||||
extra="VDD VSS"
|
||||
extra="device footprint description VDD VSS"
|
||||
extra_pinnumber="14 7"
|
||||
}
|
||||
G {}
|
||||
|
|
|
|||
|
|
@ -1,11 +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\\"
|
||||
numslots=0
|
||||
VSS=VSS
|
||||
template="name=U? device=4006 footprint=DIP14 description=\\"18-stage static shift register\\" VSS=VSS
|
||||
VDD=VDD
|
||||
"
|
||||
tedax_format="footprint @name @footprint
|
||||
|
|
@ -14,7 +9,7 @@ device @name @device
|
|||
@comptag"
|
||||
format="@name @pinlist @value @VSS @VDD"
|
||||
|
||||
extra="VSS VDD"
|
||||
extra="device footprint description VSS VDD"
|
||||
extra_pinnumber="7 14"
|
||||
}
|
||||
G {}
|
||||
|
|
|
|||
|
|
@ -1,12 +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\\"
|
||||
numslots=0
|
||||
symversion=1.0
|
||||
VSS=VSS
|
||||
template="name=U? device=4006 footprint=DIP14 description=\\"18-stage static shift register\\" symversion=1.0 VSS=VSS
|
||||
VDD=VDD
|
||||
"
|
||||
tedax_format="footprint @name @footprint
|
||||
|
|
@ -15,7 +9,7 @@ device @name @device
|
|||
@comptag"
|
||||
format="@name @pinlist @value @VSS @VDD"
|
||||
|
||||
extra="VSS VDD"
|
||||
extra="device footprint description VSS VDD"
|
||||
extra_pinnumber="7 14"
|
||||
}
|
||||
G {}
|
||||
|
|
|
|||
|
|
@ -1,17 +1,14 @@
|
|||
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\\"
|
||||
numslots=0
|
||||
"
|
||||
template="name=U? device=4007 footprint=DIP14 description=\\"dual complementary pair and inverter\\" "
|
||||
tedax_format="footprint @name @footprint
|
||||
value @name @value
|
||||
device @name @device
|
||||
@comptag"
|
||||
format="@name @pinlist @value "
|
||||
|
||||
device footprint description
|
||||
|
||||
}
|
||||
G {}
|
||||
V {}
|
||||
|
|
|
|||
|
|
@ -1,11 +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\\"
|
||||
numslots=0
|
||||
VSS=VSS
|
||||
template="name=U? device=4008 footprint=DIP16 description=\\"4 bit binary full adder\\" VSS=VSS
|
||||
VDD=VDD
|
||||
"
|
||||
tedax_format="footprint @name @footprint
|
||||
|
|
@ -14,7 +9,7 @@ device @name @device
|
|||
@comptag"
|
||||
format="@name @pinlist @value @VSS @VDD"
|
||||
|
||||
extra="VSS VDD"
|
||||
extra="device footprint description VSS VDD"
|
||||
extra_pinnumber="8 16"
|
||||
}
|
||||
G {}
|
||||
|
|
|
|||
|
|
@ -1,11 +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\\"
|
||||
numslots=0
|
||||
VSS=VSS
|
||||
template="name=U? device=4008 footprint=DIP16 description=\\"4 bit binary full adder\\" VSS=VSS
|
||||
VDD=VDD
|
||||
"
|
||||
tedax_format="footprint @name @footprint
|
||||
|
|
@ -14,7 +9,7 @@ device @name @device
|
|||
@comptag"
|
||||
format="@name @pinlist @value @VSS @VDD"
|
||||
|
||||
extra="VSS VDD"
|
||||
extra="device footprint description VSS VDD"
|
||||
extra_pinnumber="8 16"
|
||||
}
|
||||
G {}
|
||||
|
|
|
|||
|
|
@ -1,14 +1,6 @@
|
|||
v {xschem version=3.0.0 file_version=1.2}
|
||||
K {type=4009
|
||||
template="device=4009
|
||||
slot=1
|
||||
numslots=6
|
||||
name=U?
|
||||
pins=16
|
||||
class=IC
|
||||
footprint=DIP16
|
||||
description=\\"6 CMOS to TTL inverting converter\\"
|
||||
GND=GND
|
||||
template="device=4009 slot=1 name=U? pins=16 class=IC footprint=DIP16 description=\\"6 CMOS to TTL inverting converter\\" GND=GND
|
||||
Vcc=Vcc
|
||||
VDD=VDD
|
||||
"
|
||||
|
|
@ -18,7 +10,7 @@ device @name @device
|
|||
@comptag"
|
||||
format="@name @pinlist @value @GND @Vcc @VDD"
|
||||
|
||||
extra="GND Vcc VDD"
|
||||
extra="device footprint description GND Vcc VDD"
|
||||
extra_pinnumber="8 1 16"
|
||||
}
|
||||
G {}
|
||||
|
|
|
|||
|
|
@ -1,14 +1,6 @@
|
|||
v {xschem version=3.0.0 file_version=1.2}
|
||||
K {type=4010
|
||||
template="device=4010
|
||||
slot=1
|
||||
numslots=6
|
||||
name=U?
|
||||
pins=16
|
||||
class=IC
|
||||
footprint=DIP16
|
||||
description=\\"6 CMOS to TTL converter\\"
|
||||
GND=GND
|
||||
template="device=4010 slot=1 name=U? pins=16 class=IC footprint=DIP16 description=\\"6 CMOS to TTL converter\\" GND=GND
|
||||
VDD=VDD
|
||||
Vcc=Vcc
|
||||
"
|
||||
|
|
@ -18,7 +10,7 @@ device @name @device
|
|||
@comptag"
|
||||
format="@name @pinlist @value @GND @VDD @Vcc"
|
||||
|
||||
extra="GND VDD Vcc"
|
||||
extra="device footprint description GND VDD Vcc"
|
||||
extra_pinnumber="8 16 1"
|
||||
}
|
||||
G {}
|
||||
|
|
|
|||
|
|
@ -1,11 +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\\"
|
||||
numslots=0
|
||||
VSS=VSS
|
||||
template="name=U? device=40100 footprint=DIP16 description=\\"32-stage static left/right shift register\\" VSS=VSS
|
||||
VDD=VDD
|
||||
"
|
||||
tedax_format="footprint @name @footprint
|
||||
|
|
@ -14,7 +9,7 @@ device @name @device
|
|||
@comptag"
|
||||
format="@name @pinlist @value @VSS @VDD"
|
||||
|
||||
extra="VSS VDD"
|
||||
extra="device footprint description VSS VDD"
|
||||
extra_pinnumber="8 16"
|
||||
}
|
||||
G {}
|
||||
|
|
|
|||
|
|
@ -1,11 +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\\"
|
||||
numslots=0
|
||||
VSS=VSS
|
||||
template="name=U? device=40101 footprint=DIP14 description=\\"9 bit parity checker\\" VSS=VSS
|
||||
VDD=VDD
|
||||
"
|
||||
tedax_format="footprint @name @footprint
|
||||
|
|
@ -14,7 +9,7 @@ device @name @device
|
|||
@comptag"
|
||||
format="@name @pinlist @value @VSS @VDD"
|
||||
|
||||
extra="VSS VDD"
|
||||
extra="device footprint description VSS VDD"
|
||||
extra_pinnumber="7 14"
|
||||
}
|
||||
G {}
|
||||
|
|
|
|||
|
|
@ -1,11 +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\\"
|
||||
numslots=0
|
||||
VSS=VSS
|
||||
template="name=U? device=40102 footprint=DIP16 description=\\"8-bit synchrounous BCD down counter\\" VSS=VSS
|
||||
VDD=VDD
|
||||
"
|
||||
tedax_format="footprint @name @footprint
|
||||
|
|
@ -14,7 +9,7 @@ device @name @device
|
|||
@comptag"
|
||||
format="@name @pinlist @value @VSS @VDD"
|
||||
|
||||
extra="VSS VDD"
|
||||
extra="device footprint description VSS VDD"
|
||||
extra_pinnumber="8 16"
|
||||
}
|
||||
G {}
|
||||
|
|
|
|||
|
|
@ -1,11 +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\\"
|
||||
numslots=0
|
||||
VSS=VSS
|
||||
template="name=U? device=40103 footprint=DIP16 description=\\"8-bit synchrounous binary down counter\\" VSS=VSS
|
||||
VDD=VDD
|
||||
"
|
||||
tedax_format="footprint @name @footprint
|
||||
|
|
@ -14,7 +9,7 @@ device @name @device
|
|||
@comptag"
|
||||
format="@name @pinlist @value @VSS @VDD"
|
||||
|
||||
extra="VSS VDD"
|
||||
extra="device footprint description VSS VDD"
|
||||
extra_pinnumber="8 16"
|
||||
}
|
||||
G {}
|
||||
|
|
|
|||
|
|
@ -1,11 +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\\"
|
||||
numslots=0
|
||||
VSS=VSS
|
||||
template="name=U? device=40104 footprint=DIP16 description=\\"4-bit bidirectional shift register\\" VSS=VSS
|
||||
VDD=VDD
|
||||
"
|
||||
tedax_format="footprint @name @footprint
|
||||
|
|
@ -14,7 +9,7 @@ device @name @device
|
|||
@comptag"
|
||||
format="@name @pinlist @value @VSS @VDD"
|
||||
|
||||
extra="VSS VDD"
|
||||
extra="device footprint description VSS VDD"
|
||||
extra_pinnumber="8 16"
|
||||
}
|
||||
G {}
|
||||
|
|
|
|||
|
|
@ -1,11 +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\\"
|
||||
numslots=0
|
||||
VSS=VSS
|
||||
template="name=U? device=40105 footprint=DIP16 description=\\"4-bit x 16-word fifo register\\" VSS=VSS
|
||||
VDD=VDD
|
||||
"
|
||||
tedax_format="footprint @name @footprint
|
||||
|
|
@ -14,7 +9,7 @@ device @name @device
|
|||
@comptag"
|
||||
format="@name @pinlist @value @VSS @VDD"
|
||||
|
||||
extra="VSS VDD"
|
||||
extra="device footprint description VSS VDD"
|
||||
extra_pinnumber="8 16"
|
||||
}
|
||||
G {}
|
||||
|
|
|
|||
|
|
@ -1,13 +1,6 @@
|
|||
v {xschem version=3.0.0 file_version=1.2}
|
||||
K {type=40106
|
||||
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
|
||||
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
|
||||
VSS=VSS
|
||||
"
|
||||
tedax_format="footprint @name @footprint
|
||||
|
|
@ -16,7 +9,7 @@ device @name @device
|
|||
@comptag"
|
||||
format="@name @pinlist @value @VDD @VSS"
|
||||
|
||||
extra="VDD VSS"
|
||||
extra="device footprint description VDD VSS"
|
||||
extra_pinnumber="14 7"
|
||||
}
|
||||
G {}
|
||||
|
|
|
|||
|
|
@ -1,13 +1,6 @@
|
|||
v {xschem version=3.0.0 file_version=1.2}
|
||||
K {type=40107
|
||||
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
|
||||
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
|
||||
VSS=VSS
|
||||
"
|
||||
tedax_format="footprint @name @footprint
|
||||
|
|
@ -16,7 +9,7 @@ device @name @device
|
|||
@comptag"
|
||||
format="@name @pinlist @value @VDD @VSS"
|
||||
|
||||
extra="VDD VSS"
|
||||
extra="device footprint description VDD VSS"
|
||||
extra_pinnumber="8 4"
|
||||
}
|
||||
G {}
|
||||
|
|
|
|||
|
|
@ -1,11 +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\\"
|
||||
numslots=0
|
||||
VSS=VSS
|
||||
template="name=U? device=40108 footprint=DIP24 description=\\"4x4 multiport register\\" VSS=VSS
|
||||
VDD=VDD
|
||||
"
|
||||
tedax_format="footprint @name @footprint
|
||||
|
|
@ -14,7 +9,7 @@ device @name @device
|
|||
@comptag"
|
||||
format="@name @pinlist @value @VSS @VDD"
|
||||
|
||||
extra="VSS VDD"
|
||||
extra="device footprint description VSS VDD"
|
||||
extra_pinnumber="12 24"
|
||||
}
|
||||
G {}
|
||||
|
|
|
|||
|
|
@ -1,12 +1,6 @@
|
|||
v {xschem version=3.0.0 file_version=1.2}
|
||||
K {type=40109
|
||||
template="name=U?
|
||||
device=40109
|
||||
slot=1
|
||||
numslots=4
|
||||
footprint=DIP16
|
||||
description=\\"4 LOW-to-HIGH voltage level shifter\\"
|
||||
VSS=VSS
|
||||
template="name=U? device=40109 slot=1 footprint=DIP16 description=\\"4 LOW-to-HIGH voltage level shifter\\" VSS=VSS
|
||||
VDD=VDD
|
||||
VCC=VCC
|
||||
"
|
||||
|
|
@ -16,7 +10,7 @@ device @name @device
|
|||
@comptag"
|
||||
format="@name @pinlist @value @VSS @VDD @VCC"
|
||||
|
||||
extra="VSS VDD VCC"
|
||||
extra="device footprint description VSS VDD VCC"
|
||||
extra_pinnumber="8 16 1"
|
||||
}
|
||||
G {}
|
||||
|
|
|
|||
|
|
@ -1,13 +1,6 @@
|
|||
v {xschem version=3.0.0 file_version=1.2}
|
||||
K {type=4011
|
||||
template="device=4011
|
||||
numslots=4
|
||||
slot=1
|
||||
footprint=DIP14
|
||||
description=\\"4 NAND-gates with 2 inputs\\"
|
||||
name=U?
|
||||
symversion=1.0
|
||||
VDD=VDD
|
||||
template="device=4011 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
|
||||
|
|
@ -16,7 +9,7 @@ device @name @device
|
|||
@comptag"
|
||||
format="@name @pinlist @value @VDD @VSS"
|
||||
|
||||
extra="VDD VSS"
|
||||
extra="device footprint description VDD VSS"
|
||||
extra_pinnumber="14 7"
|
||||
}
|
||||
G {}
|
||||
|
|
|
|||
|
|
@ -1,13 +1,6 @@
|
|||
v {xschem version=3.0.0 file_version=1.2}
|
||||
K {type=4011
|
||||
template="device=4011
|
||||
footprint=DIP14
|
||||
class=IC
|
||||
slot=1
|
||||
numslots=4
|
||||
name=U?
|
||||
description=\\"4 NAND-gates with 2 inputs\\"
|
||||
GND=GND
|
||||
template="device=4011 footprint=DIP14 class=IC slot=1 name=U? description=\\"4 NAND-gates with 2 inputs\\" GND=GND
|
||||
VDD=VDD
|
||||
"
|
||||
tedax_format="footprint @name @footprint
|
||||
|
|
@ -16,7 +9,7 @@ device @name @device
|
|||
@comptag"
|
||||
format="@name @pinlist @value @GND @VDD"
|
||||
|
||||
extra="GND VDD"
|
||||
extra="device footprint description GND VDD"
|
||||
extra_pinnumber="7 14"
|
||||
}
|
||||
G {}
|
||||
|
|
|
|||
|
|
@ -1,11 +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\\"
|
||||
numslots=0
|
||||
VSS=VSS
|
||||
template="name=U? device=40110 footprint=DIP16 description=\\"decade up-down counter/7-segment decoder/latch/driver\\" VSS=VSS
|
||||
VDD=VDD
|
||||
"
|
||||
tedax_format="footprint @name @footprint
|
||||
|
|
@ -14,7 +9,7 @@ device @name @device
|
|||
@comptag"
|
||||
format="@name @pinlist @value @VSS @VDD"
|
||||
|
||||
extra="VSS VDD"
|
||||
extra="device footprint description VSS VDD"
|
||||
extra_pinnumber="8 16"
|
||||
}
|
||||
G {}
|
||||
|
|
|
|||
|
|
@ -1,10 +1,6 @@
|
|||
v {xschem version=3.0.0 file_version=1.2}
|
||||
K {type=40117
|
||||
template="name=U?
|
||||
device=40117
|
||||
footprint=DIP14
|
||||
numslots=0
|
||||
VSS=VSS
|
||||
template="name=U? device=40117 footprint=DIP14 VSS=VSS
|
||||
VDD=VDD
|
||||
"
|
||||
tedax_format="footprint @name @footprint
|
||||
|
|
@ -13,7 +9,7 @@ device @name @device
|
|||
@comptag"
|
||||
format="@name @pinlist @value @VSS @VDD"
|
||||
|
||||
extra="VSS VDD"
|
||||
extra="device footprint VSS VDD"
|
||||
extra_pinnumber="7 14"
|
||||
}
|
||||
G {}
|
||||
|
|
|
|||
|
|
@ -1,13 +1,6 @@
|
|||
v {xschem version=3.0.0 file_version=1.2}
|
||||
K {type=4012
|
||||
template="numslots=2
|
||||
device=4012
|
||||
slot=1
|
||||
footprint=DIP14
|
||||
description=\\"2 NAND-gates with 2 inputs\\"
|
||||
symversion=1.0
|
||||
name=U?
|
||||
VDD=VDD
|
||||
template="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
|
||||
|
|
@ -16,7 +9,7 @@ device @name @device
|
|||
@comptag"
|
||||
format="@name @pinlist @value @VDD @VSS"
|
||||
|
||||
extra="VDD VSS"
|
||||
extra="device footprint description VDD VSS"
|
||||
extra_pinnumber="14 7"
|
||||
}
|
||||
G {}
|
||||
|
|
|
|||
|
|
@ -1,12 +1,6 @@
|
|||
v {xschem version=3.0.0 file_version=1.2}
|
||||
K {type=4013
|
||||
template="device=4013
|
||||
slot=1
|
||||
numslots=2
|
||||
name=U?
|
||||
footprint=DIP14
|
||||
description=\\"2 D-type flip-flops\\"
|
||||
VDD=VDD
|
||||
template="device=4013 slot=1 name=U? footprint=DIP14 description=\\"2 D-type flip-flops\\" VDD=VDD
|
||||
VSS=VSS
|
||||
"
|
||||
tedax_format="footprint @name @footprint
|
||||
|
|
@ -15,7 +9,7 @@ device @name @device
|
|||
@comptag"
|
||||
format="@name @pinlist @value @VDD @VSS"
|
||||
|
||||
extra="VDD VSS"
|
||||
extra="device footprint description VDD VSS"
|
||||
extra_pinnumber="14 7"
|
||||
}
|
||||
G {}
|
||||
|
|
|
|||
|
|
@ -1,11 +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\\"
|
||||
numslots=0
|
||||
VSS=VSS
|
||||
template="name=U? device=4014 footprint=DIP16 description=\\"8-bit shift register with parallel load\\" VSS=VSS
|
||||
VDD=VDD
|
||||
"
|
||||
tedax_format="footprint @name @footprint
|
||||
|
|
@ -14,7 +9,7 @@ device @name @device
|
|||
@comptag"
|
||||
format="@name @pinlist @value @VSS @VDD"
|
||||
|
||||
extra="VSS VDD"
|
||||
extra="device footprint description VSS VDD"
|
||||
extra_pinnumber="8 16"
|
||||
}
|
||||
G {}
|
||||
|
|
|
|||
|
|
@ -1,11 +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\\"
|
||||
numslots=0
|
||||
VSS=VSS
|
||||
template="name=U? device=4014 footprint=DIP16 description=\\"8-bit shift register with parallel load\\" VSS=VSS
|
||||
VDD=VDD
|
||||
"
|
||||
tedax_format="footprint @name @footprint
|
||||
|
|
@ -14,7 +9,7 @@ device @name @device
|
|||
@comptag"
|
||||
format="@name @pinlist @value @VSS @VDD"
|
||||
|
||||
extra="VSS VDD"
|
||||
extra="device footprint description VSS VDD"
|
||||
extra_pinnumber="8 16"
|
||||
}
|
||||
G {}
|
||||
|
|
|
|||
|
|
@ -1,11 +1,6 @@
|
|||
v {xschem version=3.0.0 file_version=1.2}
|
||||
K {type=40147
|
||||
template="name=U?
|
||||
device=40147
|
||||
footprint=DIP16
|
||||
description=\\"10 to 4 line BCD priority encoder\\"
|
||||
numslots=0
|
||||
VSS=VSS
|
||||
template="name=U? device=40147 footprint=DIP16 description=\\"10 to 4 line BCD priority encoder\\" VSS=VSS
|
||||
VDD=VDD
|
||||
"
|
||||
tedax_format="footprint @name @footprint
|
||||
|
|
@ -14,7 +9,7 @@ device @name @device
|
|||
@comptag"
|
||||
format="@name @pinlist @value @VSS @VDD"
|
||||
|
||||
extra="VSS VDD"
|
||||
extra="device footprint description VSS VDD"
|
||||
extra_pinnumber="8 16"
|
||||
}
|
||||
G {}
|
||||
|
|
|
|||
|
|
@ -1,12 +1,6 @@
|
|||
v {xschem version=3.0.0 file_version=1.2}
|
||||
K {type=4015
|
||||
template="device=4015
|
||||
footprint=DIP16
|
||||
slot=1
|
||||
numslots=2
|
||||
name=U?
|
||||
description=\\"2 4-bit static shift register\\"
|
||||
VDD=VDD
|
||||
template="device=4015 footprint=DIP16 slot=1 name=U? description=\\"2 4-bit static shift register\\" VDD=VDD
|
||||
VSS=VSS
|
||||
"
|
||||
tedax_format="footprint @name @footprint
|
||||
|
|
@ -15,7 +9,7 @@ device @name @device
|
|||
@comptag"
|
||||
format="@name @pinlist @value @VDD @VSS"
|
||||
|
||||
extra="VDD VSS"
|
||||
extra="device footprint description VDD VSS"
|
||||
extra_pinnumber="16 8"
|
||||
}
|
||||
G {}
|
||||
|
|
|
|||
|
|
@ -1,11 +1,6 @@
|
|||
v {xschem version=3.0.0 file_version=1.2}
|
||||
K {type=4016
|
||||
template="device=4016
|
||||
name=U?
|
||||
footprint=DIP14
|
||||
description=\\"4 bilateral switches\\"
|
||||
numslots=0
|
||||
VDD=VDD
|
||||
template="device=4016 name=U? footprint=DIP14 description=\\"4 bilateral switches\\" VDD=VDD
|
||||
VSS=VSS
|
||||
"
|
||||
tedax_format="footprint @name @footprint
|
||||
|
|
@ -14,7 +9,7 @@ device @name @device
|
|||
@comptag"
|
||||
format="@name @pinlist @value @VDD @VSS"
|
||||
|
||||
extra="VDD VSS"
|
||||
extra="device footprint description VDD VSS"
|
||||
extra_pinnumber="14 7"
|
||||
}
|
||||
G {}
|
||||
|
|
|
|||
|
|
@ -1,13 +1,6 @@
|
|||
v {xschem version=3.0.0 file_version=1.2}
|
||||
K {type=4016
|
||||
template="device=4016
|
||||
name=U?
|
||||
footprint=DIP14
|
||||
description=\\"4 bilateral switches\\"
|
||||
numslots=4
|
||||
slot=1
|
||||
symversion=0.1
|
||||
VDD=VDD
|
||||
template="device=4016 name=U? footprint=DIP14 description=\\"4 bilateral switches\\" slot=1 symversion=0.1 VDD=VDD
|
||||
VSS=VSS
|
||||
"
|
||||
tedax_format="footprint @name @footprint
|
||||
|
|
@ -16,7 +9,7 @@ device @name @device
|
|||
@comptag"
|
||||
format="@name @pinlist @value @VDD @VSS"
|
||||
|
||||
extra="VDD VSS"
|
||||
extra="device footprint description VDD VSS"
|
||||
extra_pinnumber="14 7"
|
||||
}
|
||||
G {}
|
||||
|
|
|
|||
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue