Forum Discussion
Altera_Forum
Honored Contributor
11 years agomaking of a 3 bit binary number from three individual 1 bit value.
i have three nos value like a , b and c. and each are 1 bit binary value. how i convert it into a three bit binary value where a is the most significant bit and c is the least significant bit and b ...
Altera_Forum
Honored Contributor
11 years agoThat's called concatenation......
reg [2:0] x; assign x = {a,b,c};