3
0
Fork 0
mirror of https://github.com/YosysHQ/sby.git synced 2025-04-06 14:24:08 +00:00

Merge pull request #95 from adumont/patch-1

Typo: missing * in Global Clock example
This commit is contained in:
N. Engelhardt 2020-06-30 11:54:04 +02:00 committed by GitHub
commit 56c9882152
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -211,7 +211,7 @@ To use ``(* gclk *)``, define a register with that attribute, as in:
.. code-block:: systemverilog
(* gclk ) reg formal_timestep;
(* gclk *) reg formal_timestep;
You can then reference this ``formal_timestep`` in the clocking section
of an always block, as in,