如何在 System Verilog 中刷新文件缓冲区?

发布于 2024-10-26 14:03:00 字数 143 浏览 3 评论 0原文

我想在模拟中执行 $finish 之前刷新文件缓冲区。是否有我可以使用的文件刷新命令?或者我必须简单地使用 $fclose 吗?我意识到我可以在这种情况下关闭文件,但我想知道是否有刷新命令供我将来使用。

I want to flush out a file buffer before executing $finish in my simulation. Is there a file flush command that I can use? Or must I simply use $fclose? I realize I can close the file in this scenario, but I'd like to know if there is a flush command for my future use.

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

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

发布评论

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

评论(1

樱花细雨 2024-11-02 14:03:00

Verilog IEEE Std (1364-2001) 在“17.2.6 刷新输出”部分提到了 $fflush 系统任务:

将任何缓冲输出写入
文件

这当然也是 SystemVerilog IEEE Std (1800-2009) 的一部分(第 21.3.6 节)。

The Verilog IEEE Std (1364-2001) mentions the $fflush system task in section "17.2.6 Flushing output":

Writes any buffered output to the
file(s)

This is of course part of the SystemVerilog IEEE Std (1800-2009) as well (section 21.3.6).

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