Specman(e) 问题

发布于 2024-11-26 22:28:25 字数 207 浏览 0 评论 0原文

我想仅在时钟的第一个上升沿发出事件。

例如

event clkr_e is rise ('pll_clk') @ sim; 

clkr_e在每个时钟上升沿发出。

但我只需要在 pll_clk 的第一个上升沿发出一个事件。任何人都可以解释一下这一点吗?

谢谢。

I want to emit an event only at the first rising edge of clock.

for example

event clkr_e is rise ('pll_clk') @ sim; 

clkr_e is emitted at every rising clock.

But I need to emit an event only at first rising edge of pll_clk. Could any one please shed some light on this.

Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

世界如花海般美丽 2024-12-03 22:28:25

使用标志:

clk_has_risen : bool;
keep clk_has_risen == FALSE;

event first_clk_rise_e is true(clk_has_risen == FALSE) @ clkr_e;
on first_clk_rise_e {
    clk_has_risen = TRUE;
};

此外,这是一个性能禁忌:

event clkr_e is rise ('pll_clk') @ sim; 

您应该使用 Specman simple_port 构造。当我们切换到端口而不是滴答访问时,我们的模拟速度提高了一倍。在您的 Specman 文档中查找它。

Use a flag:

clk_has_risen : bool;
keep clk_has_risen == FALSE;

event first_clk_rise_e is true(clk_has_risen == FALSE) @ clkr_e;
on first_clk_rise_e {
    clk_has_risen = TRUE;
};

Also, this is a performance no-no:

event clkr_e is rise ('pll_clk') @ sim; 

You should use the Specman simple_port construct. We doubled the speed of our simulations when we switched to ports instead of tick-accesses. Look it up in your Specman docs.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文