GTKwave 3.3 does not display Verilog structures dumped by VCS into FSDB.
I declare a typedef:
typedef struct packed {
logic [DATA_WIDTH-1:0] data;
logic valid;
logic fp;
} in_tdef;
And then use it as input:
input in_tdef isv_data_in;
but GTKwave does not display this port. I can see all other single bit vectors or busses but not the structure. I do not see any switches that I need to use to enable displaying structures.
Can gtkwave 3.3 display structures, or array of structures?