Altera_Forum
Honored Contributor
15 years agoSystemverilog packed structs in Quartus II?
I have a systemverilog header file (types.svh) that contains a number of the following:
typedef struct packed { bit [127:0] field1; bit [63:0] field2; bit [127:0] field3; bit [63:0] field4; } name_of_struct; When I try to synthsize it in a file: `include "types.svh" module mod_name(i_port, ...) input name_of_struct i_port; Quartus II just dumps out a bunch of errors saying "Verilog HDL error: object "name_of_struct" is not declared. It's like QuartusII isn't actually seeing my `include file or something. Any suggestions? The console window doesn't generate any output as if the `include is actually being evaluated, so I'm not sure what's going on.