Pyverilog
Pyverilog copied to clipboard
"parameter real" is not supported
Verilog lines such as
parameter real GTHE3_CHANNEL_RX_PROGDIV_CFG = 0.0,
cause a parse error but should not. Removing "real" works around the problem.
Did you mean to terminate with a "," instead of a ";", or is that just a copy-paste error, or perhaps the bug is that removing "real" doesn't detect the "," character?
also, assigned of real is not supported:
Does not work: real dutycycle = 50;
Works: real dutycycle; assign dutycule = 50;