Altera_Forum
Honored Contributor
16 years agoCompile with quartus,
i have started with quartus 2, wrote a small module like the following in verilog but cannot compile,it takes to much time to compile (> 12 minutes) .... where is the problem?
module test(x1, x2, f); input x1,x2; output f; assign f = (x1 & ~x2) | (~x1 & x2); endmodule