what is difference between $root and uvm_root::get() ? dave_59 February 27, 2019, 5:19pm 2 In reply to knowajay: $root is a SystemVerilog construct representing the top of the static elaborated module/interface hierarchy. This hierarchy gets constructed as part of elaboration stage of ...
Can any body tell me the difference between Packed and UnPacked Arrays. Solved by kurts1 in post #2 When you declare an array, there are two types of dimensions: packed and unpacked. For example, imagine you have a variable that is 12 bits wide: bit[11:0] avar; Now, say that you...