I want to try writing some VHDL code and simulating it. I don't want to connect it to any hardware at the moment, I just want to simulate it on computer to start with.
I found a plugin for Eclipse called Sigasi where you can write VHDL code. It seems to work well. So for example I added this mux:
Now how do I simulate it? I want now to add some values for inputs and see what the output becomes when simulating it. How do I do that?
I found a plugin for Eclipse called Sigasi where you can write VHDL code. It seems to work well. So for example I added this mux:
Code:
--MUX2_1
--2001-07-27 Lars-H Hemert
library IEEE;
use IEEE.std_logic_1164.all;
entity MUX2_1 is
port(d_in0, d_in1, adress: in std_logic;
d_ut: out std_logic);
end entity MUX2_1;
architecture beteende of MUX2_1 is
begin
d_ut <= (not adress and d_in0) or (adress and d_in1);
end architecture beteende;