Forum Discussion
Altera_Forum
Honored Contributor
10 years agoOne thing I noticed is that you are using posedge clk but you are using blocking assignment. Did you supply clock to your module?
You can try: always @ (in_1, in_2) begin out_1 = (in_1 & in_2); end or if you have a clock supplied: always @ (posedge clk) begin out_1 <= (in_1 & in_2); end