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
Hi Kevin,
I have this module
module abc ( input clk; input rst; input [7:0] data[4]; output [7:0] ); // Missing code doesn't change symbolator behaviour endmodule
Symbolator generates this:
So there seems to be a problem with unpacked arrays.
Best wishes and keep on rockin'!
The text was updated successfully, but these errors were encountered:
Python 2 to 3 migration changes: format strings (kevinpt#6)
c030ea8
Changed all the uses of .format to f-strings instead. Signed-off-by: Wouter van Verre <[email protected]>
No branches or pull requests
Hi Kevin,
I have this module
module abc (
input clk;
input rst;
input [7:0] data[4];
output [7:0]
);
// Missing code doesn't change symbolator behaviour
endmodule
Symbolator generates this:
So there seems to be a problem with unpacked arrays.
Best wishes and keep on rockin'!
The text was updated successfully, but these errors were encountered: