projects
/
yosys.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6bb3d9f
)
xilinx: add delays to INV
author
Eddie Hung
<eddie@fpgeh.com>
Tue, 18 Feb 2020 19:03:38 +0000
(11:03 -0800)
committer
Eddie Hung
<eddie@fpgeh.com>
Thu, 27 Feb 2020 18:17:29 +0000
(10:17 -0800)
techlibs/xilinx/cells_sim.v
patch
|
blob
|
history
diff --git
a/techlibs/xilinx/cells_sim.v
b/techlibs/xilinx/cells_sim.v
index 0896f317640069414e6796b99da25d407cd1c188..df3b554c13e80e8ead6a72de2b36f34f32bb3a06 100644
(file)
--- a/
techlibs/xilinx/cells_sim.v
+++ b/
techlibs/xilinx/cells_sim.v
@@
-160,6
+160,9
@@
module INV(
input I
);
assign O = !I;
+ specify
+ (I => O) = 127;
+ endspecify
endmodule
(* abc9_lut=1 *)