|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有账号?注册
x
想写一个VerilogA的文件,主要作用是每隔0.05us就把一个节点的电压打印出来。文件如下:
module period_probe_vol(IN, GND);
input IN, GND;
electrical IN, GND;
real vol, t;
parameter real period = 0.05e-6;
analog begin
@(timer(0, period)) begin
t = $realtime;
vol = V(IN, GND);
$strobe("\t%r\t net voltage =\t%r", t, vol);
end
end
endmodule
仿真时打印的值却如下:
.
.
.
16.95u net voltage = 16.95u
17u net voltage = 17u
17.05u net voltage = 17.05u
17.1u net voltage = 17.1u
17.15u net voltage = 17.15u
17.2u net voltage = 17.2u
17.25u net voltage = 17.25u
.
.
.
搞不懂为什么该打印电压的地方总是和前面的时间一样。
请比较熟悉VerilogA的高手帮忙看看。
谢谢! |
|