Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ff: improve comments #4581

Merged
merged 1 commit into from
Sep 5, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading