meenu Posted May 13, 2012 Report Share Posted May 13, 2012 Hi In a register sequence i would like to use data of type uvm_reg_data_t where the value of data should be random. uvm_reg_data_t data; size = rg.get_n_bits(); data[size-1:0] = $random; What should be the type of the variable size? Should it be a parameter or define? I would like the value of size to change according to the width of the register. So the width of data should change according to the width of the register. What is the best way to do this? Quote Link to comment Share on other sites More sharing options...
uwes Posted May 14, 2012 Report Share Posted May 14, 2012 why not simply randomize an instance of a uvm_reg_data_t and constrain it to have at most n bits (or simply randomize full and mask the reset away) ? Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.