diff options
author | Eddie Hung <eddie@fpgeh.com> | 2019-08-16 16:07:29 -0700 |
---|---|---|
committer | Eddie Hung <eddie@fpgeh.com> | 2019-08-16 16:07:29 -0700 |
commit | d26c512d7ef5369f26436540efee40201e480f7f (patch) | |
tree | 71c0c5c618bb8c31d39f29c53ecfaf9c699f3b98 | |
parent | 1c57b1e7ea0128aebef8e78bcf4de9aaf9e42c6a (diff) | |
download | yosys-d26c512d7ef5369f26436540efee40201e480f7f.tar.gz yosys-d26c512d7ef5369f26436540efee40201e480f7f.tar.bz2 yosys-d26c512d7ef5369f26436540efee40201e480f7f.zip |
Add doc for abc_* attributes
-rw-r--r-- | README.md | 16 |
1 files changed, 16 insertions, 0 deletions
@@ -405,6 +405,22 @@ 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_in`` and ``abc_carry_out`` attributes mark + the carry-in and carry-out ports of a box. This information is necessary for + `abc9` to preserve the integrity of carry-chains. + Non-standard or SystemVerilog features for formal verification ============================================================== |