Nic30
Nic30
> that they are very much tied to C++. Only real dependency are the definitions of enums for language version. https://github.com/Nic30/hdlConvertor/blob/master/grammars/verilogPreprocParser.g4#L7 Things like https://github.com/Nic30/hdlConvertor/blob/master/grammars/verilogPreprocLexer.g4#L9 can be translated to any language...
> cmake is used to bootstrap the build environment > cmake is used to generate a Makefile in ./build Yes, cmake is "makefile generator" but you can also use ninja-build...
@the-moog If I understand your example you need to generate "tops" based on components used somewhere in the hierarchy. In Cesnet we were experimenting with this and realized that it...
Hello kaidoho, I do have scripts doing this but the translation is not reliable and usually requires user modifications in order to produce working result. It is also very useful...
@kaidoho Sorry for long response latency, but there were some issues which did hit me very hard. Yes there is, a black box equivalent. There are decorators which can change...
There was a missing conversion, it should be fixed now. https://github.com/Nic30/hdlConvertor/commit/1cd4910ae1df8e15732760647f30797e87f9662e#diff-d524652fb3a0f07012fd10ec301daeaea5e2ea5fc6125431a4d9f38e962073a5 https://github.com/Nic30/hdlConvertorAst/commit/ceaa80f202e639423400e9dad2423eb4e25c871d
All things which are not converted to python yet are marked with `NotImplementedLogger::print` https://github.com/Nic30/hdlConvertor/blob/06fbd10227a0242cdd727f6cba3cc4aec8ee6f03/src/svConvertor/source_textParser.cpp#L92 The problem is that the verilog/vhdl/systemverilog contains ridiculous amount of deprecated things. Most of the things...
https://github.com/easysoc/fircpp/tree/master/fircpp
Hello, if I read correctly there is only a single issue. The index operator is being resolved as a call operator? I am correct? I see two problems related to...
Correct me if I am wrong but I think that the cases where we can not resolve if this () operator is index or call are only the cases where...