verylsi
Full Member level 2
- Joined
- Mar 12, 2012
- Messages
- 123
- Helped
- 16
- Reputation
- 32
- Reaction score
- 16
- Trophy points
- 1,308
- Activity points
- 2,130
Hello All,
I recently encountered a code where components are mapped in the following mentioned manner..
It looks wonderful as it does not needs component declaration and port mapping alone is enough..
My question is how good is this practice .. and any comment on this is more than welcome.
I recently encountered a code where components are mapped in the following mentioned manner..
It looks wonderful as it does not needs component declaration and port mapping alone is enough..
My question is how good is this practice .. and any comment on this is more than welcome.
HTML:
Architecture rtl of ABC is
begin
CrcInst : entity work.Crc
port map(
clk => clk,
reset => reset,
Sync => Sync,
sw => sw,
Crc => Crc,
dataRecord => Data0,
dataOut => crcData
);