T
titi
Guest
Should port list be in the same order in entity and component declartion?
Is this better to put them in the same order?
Is it possible/good idea to not use every signal in a component?
For exemple:
entity something is
port( abc, def : in std_logic_vector (15 downto 0); re : in
std_logic;
.....
and in another file:
component something
port(re : in std_logic;
abc : in std_logic_vector(15 downto 0);
def : in std_logic_vector(15 downto 0);
....
Is this better to put them in the same order?
Is it possible/good idea to not use every signal in a component?
For exemple:
entity something is
port( abc, def : in std_logic_vector (15 downto 0); re : in
std_logic;
.....
and in another file:
component something
port(re : in std_logic;
abc : in std_logic_vector(15 downto 0);
def : in std_logic_vector(15 downto 0);
....