Forum Discussion
Altera_Forum
Honored Contributor
14 years agoSince the program is on the school's computer its at quartus 11.0. As for the code I've tried compileing a simple adder but it still will not compile and has the same problems with the other programs.
module adder(a,b,cin,s,cout); parameter N = 8; input [N-1:0] a, b; input cin; output [N-1:0] s; output cout; assign {cout,s} = a + b + cin; endmodule