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

enumerator not showing hints when hovering #72

Open
ThePeteTree opened this issue Jan 11, 2024 · 1 comment
Open

enumerator not showing hints when hovering #72

ThePeteTree opened this issue Jan 11, 2024 · 1 comment

Comments

@ThePeteTree
Copy link

when i create an enumerator the code does auto completion , but the hints don't work for enumerators tho.
in the example, bellow if i hover the mouse over REG_D in address2 = REG_D; I can see 8'h03 , but if i do it on the
REG_A of the line address1 = REG_A; , it does not show me the value of the enumerator ?
is this expected ?

typedef enum logic [ 7:0] {
   REG_A = 8'h00,
   REG_B = 8'h01,
   REG_C = 8'h02
} ADDRS;

parameter logic [ 7:0]
   REG_D = 8'h03,
   REG_E = 8'h01;

ADDRS address;
address1 = REG_A;
address2 = REG_D;
@TheClams
Copy link
Owner

Implemented in 3.3.3

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants