@@ -256,25 +256,25 @@ begin
256256 signal array_pom_out : array_pom_out_t;
257257 begin
258258 --! generate output registers
259- gen_reg_out: for i in 0 to ((DATA_WIDTH/ 48 ) + (1 mod ((DATA_WIDTH mod 48 ) + 1 )) - 2 ) generate
259+ gen_reg_out: for y in 0 to ((DATA_WIDTH/ 48 ) + (1 mod ((DATA_WIDTH mod 48 ) + 1 )) - 2 ) generate
260260 process (CLK)
261261 begin
262262 if ((CLK'event ) and (CLK = '1' )) then
263- -- if (enable_p(2+I ) = '1') then
264- array_pom_out(I + 1 ) <= array_pom_out(I );
263+ -- if (enable_p(2+y ) = '1') then
264+ array_pom_out(y + 1 ) <= array_pom_out(y );
265265 -- end if;
266266 end if ;
267267 end process ;
268268 end generate ;
269269
270270 --! generate registers for DSP pattern output
271271 gen_rst_logic: if (AUTO_RESET = 1 ) generate
272- gen_reg_out: for i in 0 to ((DATA_WIDTH/ 48 ) + (1 mod ((DATA_WIDTH mod 48 ) + 1 )) - 2 ) generate
272+ gen_reg_out: for y in 0 to ((DATA_WIDTH/ 48 ) + (1 mod ((DATA_WIDTH mod 48 ) + 1 )) - 2 ) generate
273273 process (CLK)
274274 begin
275275 if ((CLK'event ) and (CLK = '1' )) then
276- -- if (enable_p(2+I ) = '1') then
277- pattern_pom(I + 1 ) <= pattern_pom(I );
276+ -- if (enable_p(2+y ) = '1') then
277+ pattern_pom(y + 1 ) <= pattern_pom(y );
278278 -- end if;
279279 end if ;
280280 end process ;
@@ -321,8 +321,8 @@ begin
321321 process (CLK)
322322 begin
323323 if ((CLK'event ) and (CLK = '1' )) then
324- -- if (enable_p(I+2+Y ) = '1') then
325- array_pom_out(Y + 1 ) <= array_pom_out(Y );
324+ -- if (enable_p(I+2+y ) = '1') then
325+ array_pom_out(y + 1 ) <= array_pom_out(y );
326326 -- end if;
327327 end if ;
328328 end process ;
@@ -333,8 +333,8 @@ begin
333333 process (CLK)
334334 begin
335335 if ((CLK'event ) and (CLK = '1' )) then
336- -- if (enable_p(I+2+Y ) = '1') then
337- pattern_pom(Y + 1 ) <= pattern_pom(Y );
336+ -- if (enable_p(I+2+y ) = '1') then
337+ pattern_pom(y + 1 ) <= pattern_pom(y );
338338 -- end if;
339339 end if ;
340340 end process ;
@@ -346,8 +346,8 @@ begin
346346 process (CLK)
347347 begin
348348 if ((CLK'event ) and (CLK = '1' )) then
349- -- if (enable_p(1+Y ) = '1') then
350- array_pom_in_A(Y + 1 ) <= array_pom_in_A(Y );
349+ -- if (enable_p(1+y ) = '1') then
350+ array_pom_in_A(y + 1 ) <= array_pom_in_A(y );
351351 -- end if;
352352 end if ;
353353 end process ;
@@ -359,8 +359,8 @@ begin
359359 process (CLK)
360360 begin
361361 if ((CLK'event ) and (CLK = '1' )) then
362- -- if (enable_p(1+Y ) = '1') then
363- array_pom_in_MAX(Y + 1 ) <= array_pom_in_MAX(Y );
362+ -- if (enable_p(1+y ) = '1') then
363+ array_pom_in_MAX(y + 1 ) <= array_pom_in_MAX(y );
364364 -- end if;
365365 end if ;
366366 end process ;
@@ -407,8 +407,8 @@ begin
407407 process (CLK)
408408 begin
409409 if ((CLK'event ) and (CLK = '1' )) then
410- -- if (enable_p(1+Y ) = '1') then
411- array_pom_in_A(Y + 1 ) <= array_pom_in_A(Y );
410+ -- if (enable_p(1+y ) = '1') then
411+ array_pom_in_A(y + 1 ) <= array_pom_in_A(y );
412412 -- end if;
413413 end if ;
414414 end process ;
@@ -419,8 +419,8 @@ begin
419419 process (CLK)
420420 begin
421421 if ((CLK'event ) and (CLK = '1' )) then
422- -- if (enable_p(1+Y ) = '1') then
423- array_pom_in_MAX(Y + 1 ) <= array_pom_in_MAX(Y );
422+ -- if (enable_p(1+y ) = '1') then
423+ array_pom_in_MAX(y + 1 ) <= array_pom_in_MAX(y );
424424 -- end if;
425425 end if ;
426426 end process ;
@@ -465,8 +465,8 @@ begin
465465 process (CLK)
466466 begin
467467 if ((CLK'event ) and (CLK = '1' )) then
468- -- if (enable_p(1+Y ) = '1') then
469- array_pom_in_A(Y + 1 ) <= array_pom_in_A(Y );
468+ -- if (enable_p(1+y ) = '1') then
469+ array_pom_in_A(y + 1 ) <= array_pom_in_A(y );
470470 -- end if;
471471 end if ;
472472 end process ;
@@ -477,8 +477,8 @@ begin
477477 process (CLK)
478478 begin
479479 if ((CLK'event ) and (CLK = '1' )) then
480- -- if (enable_p(1+Y ) = '1') then
481- array_pom_in_MAX(Y + 1 ) <= array_pom_in_MAX(Y );
480+ -- if (enable_p(1+y ) = '1') then
481+ array_pom_in_MAX(y + 1 ) <= array_pom_in_MAX(y );
482482 -- end if;
483483 end if ;
484484 end process ;
0 commit comments