[sva]在设计的RTL中加入assert

本文介绍了如何在RTL设计中通过include和bind方法加入assert,并强调了使用bind的优势,允许通过跨模块引用(XMR)将断言关联到特定模块实例,避免在所有实例上运行断言。
摘要由CSDN通过智能技术生成

1. Include

/* File name : bus_arbiter.sv*/
// Design module
module bus_arbiter (
input logic clk,
input logic rst,
input logic [7:0] a,
input logic a_vld,
input logic [7:0] b,
input logic b_vld,
output logic [7:0] c);

logic [1:0] arb_sig;
logic [31:0] a_cnt;
logic [31:0] b_cnt;
logic [3:0] current_state;

// ... design code goes here

// place this at the end, right before endmodule
`include "bus_arb_assertions.svh"

endmodule: bus_arbiter

                
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值