loki 0 Report post Posted September 14, 2011 On page 118 of the UVM 1.1 (May 18, 2011), I do not understand this line of code: subblk.regmodel = regmodel.subblk; Shouldn't it be: subblk.regmodel = regmodel; Thanks. Share this post Link to post Share on other sites
uwes 17 Report post Posted September 14, 2011 hi, i think the doc is correct: it sets the regmodel property of the subblock to the matching subblk of the register model. (your code would set the regmodel of the subblock to the same as the parent block) /uwe Share this post Link to post Share on other sites
loki 0 Report post Posted September 14, 2011 I see. To each block of the entire register model corresponds a sub-environment, which gets a pointer to just that block of the register model. Thanks. Share this post Link to post Share on other sites