jaijeet / VAPP

The Berkeley Verilog-A Parser and Processor
https://github.com/jaijeet/VAPP/wiki
Other
12 stars 8 forks source link

Multiple input statements in analog function #9

Open wang159 opened 7 years ago

wang159 commented 7 years ago

Input for analog functions may not be correctly translated into ModSpec at the moment.


example VA input: analog function real calc_iq; input a; input b; .....

translates into function output = calc_iq(b)


Looks like the earlier input statements are ignored. This may be a bug or is it intended.

wang159 commented 7 years ago

Addressed this issue in my current fork. Will request a merge tomorrow.