Skip to content

Commit

Permalink
Merge pull request #4581 from YosysHQ/emil/ff-clk-comment
Browse files Browse the repository at this point in the history
ff: improve comments
  • Loading branch information
povik authored Sep 5, 2024
2 parents 17ee367 + bd6f7bb commit 73a2d35
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions kernel/ff.h
Original file line number Diff line number Diff line change
Expand Up @@ -131,9 +131,11 @@ struct FfData {
bool is_fine;
// True if this FF is an $anyinit cell. Depends on has_gclk.
bool is_anyinit;
// Polarities, corresponding to sig_*. True means active-high, false
// means active-low.
// Polarities, corresponding to sig_*.
// True means rising edge, false means falling edge.
bool pol_clk;
// True means active-high, false
// means active-low.
bool pol_ce;
bool pol_aload;
bool pol_arst;
Expand Down

0 comments on commit 73a2d35

Please sign in to comment.