Forum Discussion
Altera_Forum
Honored Contributor
14 years ago --- Quote Start --- In VHDL a for loop is necessary for the bit reversal, I think, it's also the case in Verilog. --- Quote End --- Are you saying to place : --------------------- for ( n=0 ; n < 30 ; n=n+1 ) begin out[n] <= inp[29-n]; // Reverse video data buss bit order end -------------------- in place of the -> out[29:0] <= inp[0:29]; I'm assuming my Verilog use of a 'for loop' here is correct....