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

Riviera-PRO 2020.04 doesn't support enhanced generic interface types #8

Open
Paebbels opened this issue Jul 4, 2020 · 0 comments
Open
Labels
Missing Tool Feature The feature is not yet implemented in the tool. Tool: Riviera-PRO
Milestone

Comments

@Paebbels
Copy link
Member

Paebbels commented Jul 4, 2020

Riviera-PRO 2020.04 doesn't support enhanced generic interface types. See LCS2016-059

Failing code

package CSE is
  generic (
    type T_Command is (<>);
    type T_Status  is (<>);
    type T_Error   is (<>)
  );
  -- ...
end package;

Workaround

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;
@Paebbels Paebbels added Missing Tool Feature The feature is not yet implemented in the tool. Tool: Riviera-PRO labels Jul 4, 2020
@Paebbels Paebbels added this to the Backlog milestone Jul 5, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Missing Tool Feature The feature is not yet implemented in the tool. Tool: Riviera-PRO
Projects
None yet
Development

No branches or pull requests

1 participant