Intel® Quartus® Prime Software
Intel® Quartus® Prime Design Software, Design Entry, Synthesis, Simulation, Verification, Timing Analysis, System Design (Platform Designer, formerly Qsys)
16629 Discussions

How to combine signals in BDF?

Altera_Forum
Honored Contributor II
2,390 Views

I have wires a[5..0] and b[5..0] and wish to combine into a 12 bit bus. What should I label the resulting bus in the schematic file? or do I have to do this in code? 

 

Thanks
0 Kudos
2 Replies
Altera_Forum
Honored Contributor II
1,182 Views

You can copy a[] and b[] bit vectors to e. g. c[5..0] and c[11..6] using the wire net connector symbol.

0 Kudos
Altera_Forum
Honored Contributor II
1,182 Views

The simplest way I know is to concatenate the signals with a comma, i.e. 

edit the properties of your 12 bit bus and name it a[5..0],b[5..0]. This will create a 12 bit bus with a[5..0] as the top half of the bus and b[5..0] as the bottom half.
0 Kudos
Reply