Forum Discussion

AFera1's avatar
AFera1
Icon for New Contributor rankNew Contributor
6 years ago

Error Code (121014): Net HEX2, HEX1, HEX0 cannot be assigned to more than one value. If someone can help that would be greatly appreciated.

module bcd_seven_seg(SW,HEX0,HEX1,HEX2,LEDG); input [9:0] SW; output [6:0] HEX0, HEX1, HEX2; output [9:0] LEDG; wire [6:0] hex0,hex1,hex2; assign HEX0 = ~hex0; assign HEX1 = ~hex1; a...