Hi,
I'm working on a case were I use custom Verilog attributes. For example:
...
wire leaf0_y;
wire leaf1_y;
wire leaf2_y;
(* myattr="test" *)
wire [5:0] test_mid;
...
I can see the attribut being present in the ast and I can find the hdlAttributes in the parsed module.
However, we I generate the Verilog, the attributes are not present.
...
wire leaf0_y;
wire leaf1_y;
wire leaf2_y;
wire[5:0] test_mid;
...
Is this a known behavior?
Hi,
I'm working on a case were I use custom Verilog attributes. For example:
I can see the attribut being present in the ast and I can find the hdlAttributes in the parsed module.
However, we I generate the Verilog, the attributes are not present.
Is this a known behavior?