[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]

gEDA-user: Timing in Icarus Verilog not working



I want to model gate delays, but everything happens without delay.
Icarus gives no errors messages or warnings. I used gates such as the
following:

module and2 (A, B, O);
input  A ;
input  B ;
output O ;

   and  (O, A, B);

   specify
     // delay parameters
     specparam
       rise = 3.62329:3.62329:3.62329,
       fall = 4.98817:4.98817:4.98817;

     // path delays
     (A *> O) = (rise, fall);
     (B *> O) = (rise, fall);

   endspecify

endmodule

Philipp


_______________________________________________
geda-user mailing list
geda-user@xxxxxxxxxxxxxx
http://www.seul.org/cgi-bin/mailman/listinfo/geda-user