Open
Description
Missing '#' needs to be added to AST code generator templates that include ldelay and rdelay.
Bug produces verilog code that cannot be compiled and run.
modified: blockingsubstitution.txt
modified: nonblockingsubstitution.txt
modified: substitution.txt
For example,
{% if ldelay != '' %}{{ ldelay }} {% endif %}{{ left }} <= {% if rdelay != '' %}{{ rdelay }} {% endif %}{{ right }};
should change to
{% if ldelay != '' %}#{{ ldelay }} {% endif %}{{ left }} <= {% if rdelay != '' %}#{{ rdelay }} {% endif %}{{ right }};