vhd2vl icon indicating copy to clipboard operation
vhd2vl copied to clipboard

Results 12 vhd2vl issues
Sort by recently updated
recently updated
newest added

Hi, currently the tests are failing due to three minor parenthesize inconsistencies. These are not real failures; the "golden outputs" against which the results are diffed ought to be updated....

Dear developer, I need to convert a VHDL file to verilog. I use ```./vhd2vl tb_fracn09.vhd tb_fracn09.v``` command for conversion. I got this error. `ERROR (line 17): undefined type 'string'.` What...

I had what appeared to be a simple assignment of the form: wire

This fixes the compatibility with the latest version of Verilog https://github.com/steveicarus/iverilog/releases/tag/v11_0

When attempting to translate a VHDL entity whose PORT declaration contains a user defined type using the technique described here: https://stackoverflow.com/questions/16872950/can-custom-types-be-used-in-port-declaration, there is no way to inform vhd2vl of the...

`signal douta_ram0 : std_logic_vector(31 downto 0) := 32D"0";` Lines like this return: > syntax error, unexpected NAME at "D" in line 82. Is there a way to handle the VHDL-2008...

I think I found all the places this is used. I haven't been able to break it yet, at least.

Maps the VHDL alias keyword to the Verilog alias keyword.

I tried to define a record type in a package file, saved as core_types.vhd: > package core_types is > type CPU_ToRAM is record > memAWriteEnable : std_logic; > memBWrite :...