xilinx: add delays to INV
authorEddie Hung <eddie@fpgeh.com>
Tue, 18 Feb 2020 19:03:38 +0000 (11:03 -0800)
committerEddie Hung <eddie@fpgeh.com>
Thu, 27 Feb 2020 18:17:29 +0000 (10:17 -0800)
techlibs/xilinx/cells_sim.v

index 0896f317640069414e6796b99da25d407cd1c188..df3b554c13e80e8ead6a72de2b36f34f32bb3a06 100644 (file)
@@ -160,6 +160,9 @@ module INV(
     input I
 );
   assign O = !I;
+  specify
+    (I => O) = 127;
+  endspecify
 endmodule
 
 (* abc9_lut=1 *)