当前位置:网站首页>UVM in UVM_ report_ Enabled usage
UVM in UVM_ report_ Enabled usage
2022-06-27 01:25:00 【Alfred. HOO】
uvm_report_enabled
function int uvm_report_enabled(
int verbosity,
uvm_severity severity = UVM_INFO,
string id = "" )
If this severity /id The configured redundancy is greater than or equal to this redundancy , Then return to 1, Otherwise return to 0.
See also get_report_verbosity_level and uvm_report_enabled Global version of .
Example :
if(uvm_report_enabled(UVM_HIGH, UVM_INFO, "MEMDATA")) begin
memlayout = " {\n}";
foreach(mem[iu]) begin
memlayout = %sformatf("%s mem[%0d]: %8h", memlayout, i, mem[i]);
end
memlayout = {memlayout, " }\n"};
end
`uvm_info("MEMDATA", memlayout, UVM_HIGH)
边栏推荐
- buuctf-pwn write-ups (6)
- UVM中uvm_report_enabled的用法
- Custom jsp[if, foreach, data, select] tag
- get_sequencer的用法总结
- Kept to implement redis autofailover (redisha) 15
- 30 MySQL tutorial MySQL storage engine overview
- Buuctf PWN write UPS (6)
- 通过Rust语言计算加速技术突破图片识别性能瓶颈
- Keepalived 实现 Redis AutoFailover (RedisHA)15
- 做了两天的唯美蝴蝶动画
猜你喜欢

Esp32-solo development tutorial to solve config_ FREERTOS_ UNICORE problem

Amazon ElastiCache 飞速搭建缓存服务集群,这才叫快

Break through the performance bottleneck of image recognition through rust language computing acceleration technology

超越锂电池——未来电池的概念

Amazon elasticache quickly builds a cache service cluster, which is fast

Bs-gx-016 implementation of textbook management system based on SSM

LeetCode 142. 环形链表 II

清华&智源 | CogView2:更快更好的文本图像生成模型

Summary of working at home during the epidemic | community essay solicitation

TopoLVM: 基于LVM的Kubernetes本地持久化方案,容量感知,动态创建PV,轻松使用本地磁盘
随机推荐
统一结果集的封装
Tsinghua & Zhiyuan | cogview2: faster and better text image generation model
SystemVerilog仿真速率提升
memcached基础4
Memcached Foundation
Keepalived 实现 Redis AutoFailover (RedisHA)11
memcached基础
30 MySQL tutorial MySQL storage engine overview
Beyond lithium battery -- the concept of battery in the future
Topolvm: kubernetes local persistence scheme based on LVM, capacity aware, dynamically create PV, and easily use local disk
IIS 部署静态网站和 FTP 服务
Daily question brushing record (V)
Kept to implement redis autofailover (redisha) 11
30《MySQL 教程》MySQL 存储引擎概述
解决unable to create a folder to save the sketch: mkdir sketch
Keepalived 实现 Redis AutoFailover (RedisHA)17
3 - wire SPI Screen Drive
Operating instructions and Q & A of cec-i China learning machine
Kept to implement redis autofailover (redisha) 14
UVM中config_db机制的使用方法