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

Change parameter/localparam keyword to param/local #549

Merged
merged 1 commit into from
Mar 12, 2024

Conversation

dalance
Copy link
Collaborator

@dalance dalance commented Mar 12, 2024

Closes #537

Migration guide

Change from parameter to param, and from localparam to local.

  • From
module #(
    parameter  ParamA: u32 = 1,
    localparam ParamA: u32 = 1,
) () {
}
  • To
module #(
    param ParamA: u32 = 1,
    local ParamA: u32 = 1,
) () {
}

@dalance dalance merged commit 30deb52 into master Mar 12, 2024
6 checks passed
@dalance dalance deleted the change_param_local branch May 2, 2024 11:55
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

[Feature] Repalce parameter and localparam keywords
1 participant