We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Describe the bug
When I use a `define to specify a delay the parser says there is a syntax error.
`define
To Reproduce Run the following code through verible-verilog-syntax I
verible-verilog-syntax
`ifndef ASSIGN_DELAY `define ASSIGN_DELAY #0 `endif module test #() ( input a,clk, output b); reg bb; always_ff @(posedge clk) begin bb <= `ASSIGN_DELAY a; end assign b = bb; endmodule
Actual behavior:
The command reports
test.v:14:25: syntax error at token "a"
Expected behavior
I expect no output indicating success.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Describe the bug
When I use a
`define
to specify a delay the parser says there is a syntax error.To Reproduce
Run the following code through
verible-verilog-syntax
IActual behavior:
The command reports
Expected behavior
I expect no output indicating success.
The text was updated successfully, but these errors were encountered: