Vengineerの妄想(準備期間)

人生は短いけど、長いです。人生を楽しみましょう!

Getting started with the UVM – Using the Register Modeling


メンターのブログにて、
DaveさんがGetting started with the UVM – Using the Register Modelingをアップしています。

レジスタモデルでは、次のようにします。
引用
    spi_rmインスタンスのctrlレジスタへのリードアクセス
      spi_rm.ctrl.read(status, read_data, .parent(this));

    spi_rmインスタンスのctrlレジスタへのライトアクセス
    spi_rm.ctrl.write(status, write_data, .parent(this)); 

なお、ここでのレジスタモデルは、ケイデンスUVM_RGMではありません!

是非、読んでみてください。

検証、Verification、Mentor、UVM