You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[FIRRTL][NFC] Use underscores in documentation. (#6860)
In the only supported mechanism for using intrinsics,
the name must be an identifier so just document that.
Periods are nice, we can adjust the FIRRTL grammar / syntax
to allow this in the future if we miss them.
Enables and disables a clock safely, without glitches, based on a boolean enable value. If the enable input is 1, the output clock produced by the clock gate is identical to the input clock. If the enable input is 0, the output clock is a constant zero.
86
78
@@ -95,7 +87,7 @@ The enable input is sampled at the rising edge of the input clock; any changes o
95
87
| en | input | UInt<1> | enable for the output clock |
96
88
| out | output | Clock | gated output clock |
97
89
98
-
### circt.chisel_assert
90
+
### circt_chisel_assert
99
91
100
92
Generate a clocked SV assert statement, with optional formatted error message.
0 commit comments