I am writing a new sequence item that is extending from an existing sequence item. In the new sequence, I would like to extend the size of a variable in the existing sequence item, like so:
Existing:
rand bit [9:0] var_mem;
New:
rand bit [15:0] var_mem;
Whenever I run the sequence using the new extended sequence item, the transaction shows the size of var_mem as 10, not the expected 16. Is it possible to modify the size of a variable in the new extended sequence item, either in the sequence item or the corresponding sequence?