aboutsummaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorMarcin Koƛcielnicki <koriakin@0x04.net>2019-08-13 21:47:27 +0200
committerMarcin Koƛcielnicki <koriakin@0x04.net>2019-08-13 21:47:27 +0200
commit2d5d82e2b6f7d369c0d41b499646a8719ff0bc20 (patch)
treef0543280ae2b0c26ae6a5405046ae43fcb1fb860 /README.md
parent3c75a72feb1cf83fa8fc138aa69155446b6b74f0 (diff)
downloadyosys-2d5d82e2b6f7d369c0d41b499646a8719ff0bc20.tar.gz
yosys-2d5d82e2b6f7d369c0d41b499646a8719ff0bc20.tar.bz2
yosys-2d5d82e2b6f7d369c0d41b499646a8719ff0bc20.zip
README updates
Diffstat (limited to 'README.md')
-rw-r--r--README.md14
1 files changed, 14 insertions, 0 deletions
diff --git a/README.md b/README.md
index d9989eb29..767a0fb61 100644
--- a/README.md
+++ b/README.md
@@ -329,6 +329,20 @@ Verilog Attributes and non-standard features
that represent module parameters or localparams (when the HDL front-end
is run in -pwires mode).
+- The ``clkbuf_inhibit`` attribute can be set on a wire to prevent
+ automatic clock buffer insertion by ``clkbufmap``.
+
+- The ``clkbuf_sink`` attribute can be set on an input port of a blackbox
+ module to request clock buffer insertion by the ``clkbufmap`` pass.
+
+- The ``clkbuf_driver`` attribute can be set on an output port of a blackbox
+ module to mark it as a clock buffer output, and thus prevent ``clkbufmap``
+ from inserting another clock buffer on a net driven by such output.
+
+- The ``iopad_external_pin`` attribute on a blacbox module's port marks
+ it as the external-facing pin of an I/O pad, and prevents ``iopadmap``
+ from inserting another pad cell on it.
+
- 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