Forum Discussion
Altera_Forum
Honored Contributor
10 years ago --- Quote Start --- One 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 --- Quote End --- Thank you for you reply. I am using an on board clock running at 50Mhz.