Patched netlist so we can compile.

This commit is contained in:
Robbbert 2013-12-08 08:34:49 +00:00
parent 4b2eab132e
commit f6b9aa6424

View File

@ -552,9 +552,9 @@ ATTR_COLD void netlist_logic_output_t::set_levels(const double low, const double
ATTR_COLD double netlist_param_multi_t::dValue(const pstring &entity, const double defval) const
{
pstring tmp = this->Value().ucase();
pstring tmp = this->Value(); //.ucase();
// .model 1N914 D(Is=2.52n Rs=.568 N=1.752 Cjo=4p M=.4 tt=20n Iave=200m Vpk=75 mfg=OnSemi type=silicon)
int p = tmp.find(entity.ucase() + "=");
int p = tmp.find(entity + "=");
if (p>=0)
{
int pblank = tmp.find(" ", p);