I have to do a instantation of several components
I suppose the code for this instantation would be something like this:
componentA: componentB port map(
output_ca => input_cb
);
componentA: componentC port map(
output_ca => input_cc
);
But I know that part of the code before is wrong, because 'ouput_ca' has 6 bits and input_cb, and input_cc has only 3 bits every one of them. How would be written this code in a good way? Thank you so much for your help.