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 symbol of clock domain annotation #883

Merged
merged 1 commit into from
Aug 15, 2024
Merged

Conversation

dalance
Copy link
Collaborator

@dalance dalance commented Aug 14, 2024

Migration guide

Change the symbol of clock domnain annotation from ' to `.

  • From
module ModuleA (
    i_clk_a: input  'a clock,
    i_dat_a: input  'a logic,
    o_dat_a: output 'a logic,
    i_clk_b: input  'b clock,
    i_dat_b: input  'b logic,
    o_dat_b: output 'b logic,
) {
}
  • To
module ModuleA (
    i_clk_a: input  `a clock,
    i_dat_a: input  `a logic,
    o_dat_a: output `a logic,
    i_clk_b: input  `b clock,
    i_dat_b: input  `b logic,
    o_dat_b: output `b logic,
) {
}

Closes #882
Closes #863

@dalance dalance merged commit 4a0ab0e into master Aug 15, 2024
6 checks passed
@dalance dalance deleted the clock_domain_symbol branch August 22, 2024 07:49
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.

Change symbol of clock domain annotation from ' to ` Some clock domain annotation causes syntax error
1 participant