diff options
author | Ambikeshwar | 2016-05-25 14:21:10 +0530 |
---|---|---|
committer | Ambikeshwar | 2016-05-25 14:21:10 +0530 |
commit | 10ffe344f141a49496b85cc780ffe85d7f084219 (patch) | |
tree | fafeaaa6b9d3588632f9599f6f438e47340c199e /Netlist/inverter.vhdl | |
parent | b503d66fcc1e26be28b58cccf888e43f99d35ae2 (diff) | |
download | NGHDL-Example-master.tar.gz NGHDL-Example-master.tar.bz2 NGHDL-Example-master.zip |
Diffstat (limited to 'Netlist/inverter.vhdl')
-rw-r--r-- | Netlist/inverter.vhdl | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/Netlist/inverter.vhdl b/Netlist/inverter.vhdl new file mode 100644 index 0000000..b9641fd --- /dev/null +++ b/Netlist/inverter.vhdl @@ -0,0 +1,14 @@ +library ieee; +use ieee.std_logic_1164.all; + +entity inverter is + port ( i: in std_logic_vector(0 downto 0); + o: out std_logic_vector(0 downto 0)); +end inverter; + +architecture inverter_beh of inverter is +begin + o <= not i; +end architecture; + + |