aboutsummaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorEddie Hung <eddie@fpgeh.com>2019-08-20 11:59:31 -0700
committerGitHub <noreply@github.com>2019-08-20 11:59:31 -0700
commit14c03861b6d178c85d6963e673ed51bc142457e1 (patch)
tree286a896ad2d60544fa40cddc69fdeccd72a805d9 /README.md
parentba71e4f8f2279aed381bb024acb61ed793ca78c5 (diff)
parent29e4c8bd06acf718328c76ec5d6c11e3274b21d1 (diff)
downloadyosys-14c03861b6d178c85d6963e673ed51bc142457e1.tar.gz
yosys-14c03861b6d178c85d6963e673ed51bc142457e1.tar.bz2
yosys-14c03861b6d178c85d6963e673ed51bc142457e1.zip
Merge pull request #1304 from YosysHQ/eddie/abc9_refactor
Refactor abc9 to use port attributes, not module attributes
Diffstat (limited to 'README.md')
-rw-r--r--README.md17
1 files changed, 17 insertions, 0 deletions
diff --git a/README.md b/README.md
index d9989eb29..56f428548 100644
--- a/README.md
+++ b/README.md
@@ -405,6 +405,23 @@ Verilog Attributes and non-standard features
blackboxes and whiteboxes. Use ``read_verilog -specify`` to enable this
functionality. (By default specify .. endspecify blocks are ignored.)
+- The module attribute ``abc_box_id`` specifies a positive integer linking a
+ 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.
+
Non-standard or SystemVerilog features for formal verification
==============================================================