Forum Discussion
Altera_Forum
Honored Contributor
12 years agomodule top (
input wire SW,
output wire LED
);
assign LED = SW;
endmodule or module top (SW, LED);
input SW;
output LED;
wire LED;
assign LED = SW;
endmodule Having analysed your code with Quartus the Pin Planner will present you with two 10-bit busses for you to assign pins to. Regards, Alex