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

Not supported blocking and non-blocking assignments to the same array #547

Open
iv2nl0b9v opened this issue Jan 23, 2024 · 0 comments
Open

Comments

@iv2nl0b9v
Copy link

Repro

module my_module (
    input wire clk,
    input logic in,
    output logic [1:0] out
);

  assign out[0] = '0;  // blocking
  always_ff @(posedge (clk)) begin
    out[1] <= in;  // non-blocking
  end

endmodule : my_module

UHDM fails to convert it although I think it is a valid Verilog.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant