Hi all,
Sometimes I have to write long DFF chain like below:
//------code-------------- ... reg [7:0] DFF0,DFF1,DFF2,...DFF50;
always@(posedge clk) if(rst) begin DFF0
Hi all,
Sometimes I have to write long DFF chain like below:
//------code-------------- ... reg [7:0] DFF0,DFF1,DFF2,...DFF50;
always@(posedge clk) if(rst) begin DFF0
Can't you declare it as :
reg [7:0] DFF[0:50];
and then use for loops with the loop counter declared as an integer? I believe this is synthesizeable. Am I right?
ElectronDepot website is not affiliated with any of the manufacturers or service providers discussed here. All logos and trade names are the property of their respective owners.