aboutsummaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorEddie Hung <eddie@fpgeh.com>2019-09-05 12:00:23 -0700
committerGitHub <noreply@github.com>2019-09-05 12:00:23 -0700
commit903cd58acf7c490e0b75e34742966dc62e61028f (patch)
tree24ed0acd4627da70e762abfb362a20fa3ae64b49 /README.md
parent58ec1df4c26599338f2f45941ed8ca402abfe607 (diff)
parentaa1491add3722e4cfae35755cc4cecfd3e5a6c82 (diff)
downloadyosys-903cd58acf7c490e0b75e34742966dc62e61028f.tar.gz
yosys-903cd58acf7c490e0b75e34742966dc62e61028f.tar.bz2
yosys-903cd58acf7c490e0b75e34742966dc62e61028f.zip
Merge pull request #1312 from YosysHQ/xaig_arrival
Allow arrival times of sequential outputs to be specified to abc9
Diffstat (limited to 'README.md')
-rw-r--r--README.md13
1 files changed, 5 insertions, 8 deletions
diff --git a/README.md b/README.md
index 894b152ce..af3333e1d 100644
--- a/README.md
+++ b/README.md
@@ -355,19 +355,16 @@ Verilog Attributes and non-standard features
blackbox or whitebox definition to a corresponding entry in a `abc9`
box-file.
-- The port attribute ``abc_scc_break`` indicates a module input port that will
- be treated as a primary output during `abc9` techmapping. Doing so eliminates
- the possibility of a strongly-connected component (i.e. a combinatorial loop)
- existing. Typically, this is specified for sequential inputs on otherwise
- combinatorial boxes -- for example, applying ``abc_scc_break`` onto the `D`
- port of a LUTRAM cell prevents `abc9` from interpreting any `Q` -> `D` paths
- as a combinatorial loop.
-
- The port attribute ``abc_carry`` marks the carry-in (if an input port) and
carry-out (if output port) ports of a box. This information is necessary for
`abc9` to preserve the integrity of carry-chains. Specifying this attribute
onto a bus port will affect only its most significant bit.
+- The port attribute ``abc_arrival`` specifies an integer (for output ports
+ only) to be used as the arrival time of this sequential port. It can be used,
+ for example, to specify the clk-to-Q delay of a flip-flop for consideration
+ during techmapping.
+
- In addition to the ``(* ... *)`` attribute syntax, Yosys supports
the non-standard ``{* ... *}`` attribute syntax to set default attributes
for everything that comes after the ``{* ... *}`` statement. (Reset