您当前的位置: 首页 > 

lu-ming.xyz

暂无认证

  • 2浏览

    0关注

    115博文

    0收益

  • 0浏览

    0点赞

    0打赏

    0留言

私信
关注
热门博文

Modelsim搭建具有各组件的UVM验证平台

lu-ming.xyz 发布时间:2022-05-21 14:17:50 ,浏览量:2

文章目录
  • 1 加入 transaction
  • 2 加入 env
  • 3 加入 monitor
  • 4 封装成agent
  • 5 加入 reference model
  • 6 加入 scoreboard
  • 7 加入 field_automation 机制

记录一下《UVM实战(卷I)》学习笔记。

这节的 dut 与第一节是一样的,直接对输入打拍输出:

module dut(clk,
           rst_n, 
           rxd,
           rx_dv,
           txd,
           tx_en);
input clk;
input rst_n;
input[7:0] rxd;
input rx_dv;
output [7:0] txd;
output tx_en;

reg[7:0] txd;
reg tx_en;

always @(posedge clk) begin
   if(!rst_n) begin
      txd             
关注
打赏
1655639048
查看更多评论
0.0371s