-
Notifications
You must be signed in to change notification settings - Fork 31
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
VHDL to Verilog conversion with yosys-ghdl-plugin -- how to perserve signal names #153
Comments
I think the situation has improved recently: most of the signal names are now kept. For |
@71GA, if your target is just converting VHDL to Verilog, you might want to try |
In any of the two conversions, is it possible to convert vhdl generics -> verilog parameters? i.e. preserve the generics and don't fill them with their defaults? |
@bluesceada the output of |
I have this VHDL design in a file
spi_icebreaker.vhdl
:That I convert it to Verilog file
spi_icebreaker.v
using this one-liner Linux command:And get this output:
Verilog file looks like this:
It bothers me that signal names are completely different in the Verilog file compared to the VHDL file. For example this VHDL signal
mo
is renamed to_05_
... Why? How can I keep the original names? Does it have anything to do with the warnings that I get when translating VHDL to Verilog?The text was updated successfully, but these errors were encountered: