Forum Discussion

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

Error 10170: HDL error. I don't know why it is telling me near text: "="; expecting ".", If someone can help that would be great

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; HEX0 = ~hex0; HEX1 = ~hex1; HEX2 = ~hex2; ...