I have a top level Verilog module that instantiates a VHDL block with a few outputs that are records.
Is there a good way to access these records from my Verilog top, or am I better off just breaking the records apart?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You can (with caveats). Create a “struct” of the same type as the “record”. These two will map 1:1 as long as you do not reorder the connections. Caveat being if your tool actually supports it.