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:
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
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:
Code:
module testing_123
output PIN_10;
wire ctrl0;
assign ctrl0 = PIN_10;
ctrl0 <= 1'b0;
endmodule
Thank you,
Carl