These parameters use a "magic number" to try to detect if a parameter was specified or not:
parameter real TEMP = -`NOT_GIVEN from [`P_CELSIUS0:inf]; // Device temp [C]
parameter real TNOM = -`NOT_GIVEN; // Temperature [C]
But the Verilog-AMS LRM has had the $param_given function since version 2.2 in 2004. This function should be used instead.
These parameters use a "magic number" to try to detect if a parameter was specified or not:
But the Verilog-AMS LRM has had the $param_given function since version 2.2 in 2004. This function should be used instead.