mirror of https://github.com/YosysHQ/yosys.git
ff: improve comments
This commit is contained in:
parent
0744fac883
commit
bd6f7bb4a7
|
@ -131,9 +131,11 @@ struct FfData {
|
||||||
bool is_fine;
|
bool is_fine;
|
||||||
// True if this FF is an $anyinit cell. Depends on has_gclk.
|
// True if this FF is an $anyinit cell. Depends on has_gclk.
|
||||||
bool is_anyinit;
|
bool is_anyinit;
|
||||||
// Polarities, corresponding to sig_*. True means active-high, false
|
// Polarities, corresponding to sig_*.
|
||||||
// means active-low.
|
// True means rising edge, false means falling edge.
|
||||||
bool pol_clk;
|
bool pol_clk;
|
||||||
|
// True means active-high, false
|
||||||
|
// means active-low.
|
||||||
bool pol_ce;
|
bool pol_ce;
|
||||||
bool pol_aload;
|
bool pol_aload;
|
||||||
bool pol_arst;
|
bool pol_arst;
|
||||||
|
|
Loading…
Reference in New Issue