In reply to dave_59:
Thanks Dave!
Is there a way to concatenate the “expression”. As an example I want to do the following:
bits= 1001010 // These are 7 bits only
array_1 ={<<{33'b {bits}}} // I want 33 bits here with 0 appending after 7 bits. In this case the following number '000000000000000000000000001001010'
I tried the above but got the error:
unexpected character’{’ is illegal in this context.