如何在 System Verilog 中刷新文件缓冲区?
我想在模拟中执行 $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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
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":This is of course part of the SystemVerilog IEEE Std (1800-2009) as well (section 21.3.6).