From 42d57e78441f4b38ada6ff230cf6789a80faa4c0 Mon Sep 17 00:00:00 2001 From: Rahul Paknikar Date: Tue, 25 Jun 2019 09:53:28 +0530 Subject: Update and rename t_demux.vhdl to demux.vhdl --- Example/demux/demux.vhdl | 32 ++++++++++++++++++++++++++++++++ Example/demux/t_demux.vhdl | 32 -------------------------------- 2 files changed, 32 insertions(+), 32 deletions(-) create mode 100644 Example/demux/demux.vhdl delete mode 100644 Example/demux/t_demux.vhdl (limited to 'Example') diff --git a/Example/demux/demux.vhdl b/Example/demux/demux.vhdl new file mode 100644 index 0000000..e73c196 --- /dev/null +++ b/Example/demux/demux.vhdl @@ -0,0 +1,32 @@ +library IEEE; +use IEEE.STD_LOGIC_1164.all; + +entity demux is + port( + + F : in STD_LOGIC_vector(0 downto 0); + S0: in STD_LOGIC_vector(0 downto 0); + S1: in STD_LOGIC_vector(0 downto 0); + A: out STD_LOGIC_vector(0 downto 0); + B: out STD_LOGIC_vector(0 downto 0); + C: out STD_LOGIC_vector(0 downto 0); + D: out STD_LOGIC_vector(0 downto 0) + ); +end demux; + +architecture bhv of demux is +begin +process (F,S0,S1) is +begin + if (S0 ="0" and S1 = "0") then + A <= F; + elsif (S0 ="1" and S1 = "0") then + B <= F; + elsif (S0 ="0" and S1 = "1") then + C <= F; + else + D <= F; + end if; + +end process; +end bhv; diff --git a/Example/demux/t_demux.vhdl b/Example/demux/t_demux.vhdl deleted file mode 100644 index 1e1f0bd..0000000 --- a/Example/demux/t_demux.vhdl +++ /dev/null @@ -1,32 +0,0 @@ -library IEEE; -use IEEE.STD_LOGIC_1164.all; - -entity t_demux is - port( - - F : in STD_LOGIC_vector(0 downto 0); - S0: in STD_LOGIC_vector(0 downto 0); - S1: in STD_LOGIC_vector(0 downto 0); - A: out STD_LOGIC_vector(0 downto 0); - B: out STD_LOGIC_vector(0 downto 0); - C: out STD_LOGIC_vector(0 downto 0); - D: out STD_LOGIC_vector(0 downto 0) - ); -end t_demux; - -architecture bhv of t_demux is -begin -process (F,S0,S1) is -begin - if (S0 ="0" and S1 = "0") then - A <= F; - elsif (S0 ="1" and S1 = "0") then - B <= F; - elsif (S0 ="0" and S1 = "1") then - C <= F; - else - D <= F; - end if; - -end process; -end bhv; \ No newline at end of file -- cgit