hdlConvertorAst icon indicating copy to clipboard operation
hdlConvertorAst copied to clipboard

Python library of AST nodes for SystemVerilog/VHDL, code generator, transpiler and translator

Results 3 hdlConvertorAst issues
Sort by recently updated
recently updated
newest added

Hello, I want to use HDL AST to generate **Verilog (not System Verilog)**, but I am **worried that whether the converted file will have System Verilog specific syntax**. I see...

If I have a port declaration with multiple packed and unpacked dimensions: ` input logic [P_PACKED0:0][P_PACKED1:0][P_PACKED2:0] multi_dim_input [0:P_UNPACKED0][0:P_UNPACKED1],` only the first packed dimension is recognised as the port's packed dimension,...

https://github.com/Nic30/hdlConvertorAst/blob/master/hdlConvertorAst/hdlAst/_statements.py#L100 elifs property can be used instead, it would simplify the code analysis as code for elifs has to be there and if then block behaves just as another elif...