anusha vasanta
Member level 1
- Joined
- Sep 23, 2014
- Messages
- 34
- Helped
- 0
- Reputation
- 0
- Reaction score
- 0
- Trophy points
- 6
- Activity points
- 251
Code:
genvar a;
generate
for(a=0;a<=7;a=a+1) //converting input data_in bits into bytes format
begin : MEM
assign data[a]= data_in [((a*8)+7):(a*8)];
end
endgenerate
hi all, here i had one generate which is converting my bits into bytes of 8. is taking the conversion in gen block will reduce my no.of clock cycles?
will i get the o/p of 8 bytes in one clk during my elaboration phase?? help me thanku