Group: comp.lang.verilog


Subject: for time more than 2^32 + , how do we show them in $display
From: John_H
Date: 10/11/2007 10:10:51 AM
<parag_paul@hotmail.com> wrote in message news:1192112832.768516.12430@o3g2000hsb.googlegroups.com... > module top; > reg a; > > initial > begin > #4294967297 > > $display($time,,a); > end > endmodule > > I am seeing 1 x > which is 2^32 + 1, > -Parag How about using "%t" formatting for the time variable?