diff options
Diffstat (limited to 'Example/esim_trial_xor')
-rw-r--r-- | Example/esim_trial_xor/esim_trial_xor.vhdl | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/Example/esim_trial_xor/esim_trial_xor.vhdl b/Example/esim_trial_xor/esim_trial_xor.vhdl new file mode 100644 index 0000000..ff9190c --- /dev/null +++ b/Example/esim_trial_xor/esim_trial_xor.vhdl @@ -0,0 +1,15 @@ +library ieee; +use ieee.std_logic_1164.all; + +entity esim_trial_xor is + port (a : in std_logic_vector(0 downto 0); + b : in std_logic_vector(0 downto 0); + c : out std_logic_vector(0 downto 0)); + end esim_trial_xor; + + architecture rtl of esim_trial_xor is + begin + + c <= a xor b; + + end rtl; |