diff options
author | fossee | 2019-08-29 12:00:06 +0530 |
---|---|---|
committer | fossee | 2019-08-29 12:00:06 +0530 |
commit | d25a2bf2d63442e3585479751f168b635fc5701e (patch) | |
tree | fa1df998749b7dab5b8d404b88d77c5311167d8a /Examples/FullAdder/half_adder.sub | |
download | eSim-d25a2bf2d63442e3585479751f168b635fc5701e.tar.gz eSim-d25a2bf2d63442e3585479751f168b635fc5701e.tar.bz2 eSim-d25a2bf2d63442e3585479751f168b635fc5701e.zip |
changed Examples
Diffstat (limited to 'Examples/FullAdder/half_adder.sub')
-rw-r--r-- | Examples/FullAdder/half_adder.sub | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/Examples/FullAdder/half_adder.sub b/Examples/FullAdder/half_adder.sub new file mode 100644 index 00000000..e9f92223 --- /dev/null +++ b/Examples/FullAdder/half_adder.sub @@ -0,0 +1,14 @@ +* Subcircuit half_adder +.subckt half_adder 1 4 3 2 +* eeschema netlist version 1.1 (spice format) creation date: wed jun 24 11:31:48 2015 +* u2 1 4 3 d_xor +* u3 1 4 2 d_and +a1 [1 4 ] 3 u2 +a2 [1 4 ] 2 u3 +* Schematic Name: d_xor, NgSpice Name: d_xor +.model u2 d_xor(fall_delay=1.0e-9 input_load=1.0e-12 rise_delay=1.0e-9 ) +* Schematic Name: d_and, NgSpice Name: d_and +.model u3 d_and(fall_delay=1.0e-9 input_load=1.0e-12 rise_delay=1.0e-9 ) +* Control Statements + +.ends half_adder
\ No newline at end of file |