看到您以前的一个帖子,请问您是如何利用verilog的系统时间函数获得程序运行时间的?
发布网友
发布时间:2022-05-12 01:36
我来回答
共1个回答
热心网友
时间:2023-11-01 23:44
$time。
使用举例
$display("Now the time is %t", $time);
你也可以试试看可以不可以。
`timescale 1ns/100ps
mole tb();
real time_now;
initial begin
time_now = 0;
#50;
time_now = $time;
$display("Now the time is %t", time_now);
#150;
$display("Now the time is %f", time_now);
#20;
$display("Now the time is %t", $time);
#100;
$stop;
end
endmole