Altera_Forum
Honored Contributor
12 years agoMAX 7000 Help
Hello,
I am using the EPM7128S and all I am trying to do is make the pins high (5v) or low (0V), but I'm not having any luck. This is my first time using this chip. For example here is the code I am running to try to set pin 10 low:module testing_123
output PIN_10;
wire ctrl0;
assign ctrl0 = PIN_10;
ctrl0 <= 1'b0;
endmodule I am receiving an error which reads error (10170): verilog hdl syntax error at getest.v(6) near text "output"; expecting ";", or "(". Can anyone steer me in the right direction? Thank you, Carl