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
I' m trying to read adder.v verilog code with abc tool:
adder.v
1 module adder ( 2 input [7:0] a, 3 input [7:0] b, 4 output [7:0] sum 5 ); 6 wire [8:0] carry; 7 assign carry = a + b; 8 assign sum = carry[7:0]; 9 endmodule
However, abc quit with error:
abc 01> read adder.v abc: /home/sun/Desktop/abc/src/base/ver/verCore.c:429: Ver_ParseModule: Assertion `Symbol == ')'' failed. Aborted (core dumped)
I wonder how to solve this error.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I' m trying to read
adder.v
verilog code with abc tool:However, abc quit with error:
I wonder how to solve this error.
The text was updated successfully, but these errors were encountered: