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
Riviera-PRO 2020.04 doesn't support enhanced generic interface types. See LCS2016-059
package CSE is generic ( type T_Command is (<>); type T_Status is (<>); type T_Error is (<>) ); -- ... end package;
Don't restrict generic interface types to be discrete/allow any type (VHDL-2008 compatible).
package CSE is generic ( type T_Command; type T_Status; type T_Error ); -- ... end package;
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Riviera-PRO 2020.04 doesn't support enhanced generic interface types. See LCS2016-059
Failing code
Workaround
Don't restrict generic interface types to be discrete/allow any type (VHDL-2008 compatible).
The text was updated successfully, but these errors were encountered: