doubt on how to connect the ports in vhdl

Moderator (Company: Titel) #3045746
Rate this post
useful
not useful
Take ANY book about VHDL synthesis and look on the very first pages...
1
library IEEE;
2
use IEEE.STD_LOGIC_1164.ALL;
3

4
entity InToOut is
5
    Port ( output : out STD_LOGIC;
6
           input  : in  STD_LOGIC);
7
end InToOut;
8

9
architecture Behavioral of InToOut is
10
begin
11

12
  output <= input;
13

14
end Behavioral;

Reply

Please log in before posting.

or

Log in with Google account

Registration is free and takes only a minute.

Register now