trunk/src/emu/netlist/nl_base.c
| r26533 | r26534 | |
| 552 | 552 | |
| 553 | 553 | ATTR_COLD double netlist_param_multi_t::dValue(const pstring &entity, const double defval) const |
| 554 | 554 | { |
| 555 | | pstring tmp = this->Value().ucase(); |
| 555 | pstring tmp = this->Value(); //.ucase(); |
| 556 | 556 | // .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) |
| 557 | | int p = tmp.find(entity.ucase() + "="); |
| 557 | int p = tmp.find(entity + "="); |
| 558 | 558 | if (p>=0) |
| 559 | 559 | { |
| 560 | 560 | int pblank = tmp.find(" ", p); |