I am first time using Quartus II 12.1 free edition. I run just simple coding
module part1 (SW, LEDR);
input [17:0] SW;
output [17:0] LEDR;
assign LEDR = SW;
endmodule
Full Compilation successful with only 12 warnings. But when I program to the DE2 board, It does not work.
The same coding when I do it on Quartus II 10.1, full compilation successful with 420 warnings, did work on DE2 board.
Really don't know what is going on with it. Can someone help me get rid of it. Thanks a lot.
module part1 (SW, LEDR);
input [17:0] SW;
output [17:0] LEDR;
assign LEDR = SW;
endmodule
Full Compilation successful with only 12 warnings. But when I program to the DE2 board, It does not work.
The same coding when I do it on Quartus II 10.1, full compilation successful with 420 warnings, did work on DE2 board.
Really don't know what is going on with it. Can someone help me get rid of it. Thanks a lot.