diff options
author | Eddie Hung <eddie@fpgeh.com> | 2019-04-25 17:31:27 -0700 |
---|---|---|
committer | Eddie Hung <eddie@fpgeh.com> | 2019-04-25 17:31:27 -0700 |
commit | 3042d5833041021bb45252b0cc862e9eff3d27d3 (patch) | |
tree | 11bb9e77a5645ca8dec5103af4b2930b41a56b7f /README.md | |
parent | feff9764540cbf1152459cb377fc68d8e10c7153 (diff) | |
parent | ccd0729456e1ec105c43007a8392777893ac7d99 (diff) | |
download | yosys-3042d5833041021bb45252b0cc862e9eff3d27d3.tar.gz yosys-3042d5833041021bb45252b0cc862e9eff3d27d3.tar.bz2 yosys-3042d5833041021bb45252b0cc862e9eff3d27d3.zip |
Merge branch 'eddie/split_shiftx' into xc7mux
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -370,7 +370,7 @@ Verilog Attributes and non-standard features - When defining a macro with `define, all text between triple double quotes is interpreted as macro body, even if it contains unescaped newlines. The - tipple double quotes are removed from the macro body. For example: + triple double quotes are removed from the macro body. For example: `define MY_MACRO(a, b) """ assign a = 23; @@ -457,7 +457,7 @@ Non-standard or SystemVerilog features for formal verification supported in any clocked block. - The syntax ``@($global_clock)`` can be used to create FFs that have no - explicit clock input ($ff cells). The same can be achieved by using + explicit clock input (``$ff`` cells). The same can be achieved by using ``@(posedge <netname>)`` or ``@(negedge <netname>)`` when ``<netname>`` is marked with the ``(* gclk *)`` Verilog attribute. @@ -470,7 +470,7 @@ from SystemVerilog: - The ``assert`` statement from SystemVerilog is supported in its most basic form. In module context: ``assert property (<expression>);`` and within an - always block: ``assert(<expression>);``. It is transformed to a $assert cell. + always block: ``assert(<expression>);``. It is transformed to an ``$assert`` cell. - The ``assume``, ``restrict``, and ``cover`` statements from SystemVerilog are also supported. The same limitations as with the ``assert`` statement apply. |