WorldofKerry / Python2Verilog

Transpiles a subset of Python functions into synthesizable SystemVerilog.
https://worldofkerry.github.io/Python2Verilog/
GNU General Public License v3.0
1 stars 0 forks source link

Add Function Call Support #81

Closed WorldofKerry closed 1 year ago

WorldofKerry commented 1 year ago

Is your feature request related to a problem? Please describe. Being able to call other generators from within a generator can significantly improve the python code clarity.

Describe the solution you'd like Add support for the yield from syntax, to support calling other generator functions that output the same type(s) as its parent.

Describe alternatives you've considered None.

Additional context Function call syntax would have to be supported. Since generators can be waited on, wait syntax needs to be improved.

WorldofKerry commented 1 year ago

Addressed in #172