Forum Discussion
Altera_Forum
Honored Contributor
12 years agoHi Frank,
Would you please share your code in which you are able to cut the timings between two nodes? I want to cut the timing between two nodes same as in your example.Following is my code reg wptr; (* altera_attribute = "-name CUT on -from wptr" *) reg rq1_wptr; reg rq2_wptr; always @(posedge clk or negedge rst_n) if(~rst_n) {rq2_wptr,rq1_wptr} <= {1'b0,1'b0}; else {rq2_wptr,rq1_wptr} <= {rq1_wptr,wptr}; Thanks, Krupesh