Previous 199869 Revisions Next

r26534 Sunday 8th December, 2013 at 08:34:49 UTC by Robbbert
Patched netlist so we can compile.
[src/emu/netlist]nl_base.c

trunk/src/emu/netlist/nl_base.c
r26533r26534
552552
553553ATTR_COLD double netlist_param_multi_t::dValue(const pstring &entity, const double defval) const
554554{
555    pstring tmp = this->Value().ucase();
555    pstring tmp = this->Value(); //.ucase();
556556    // .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 + "=");
558558    if (p>=0)
559559    {
560560        int pblank = tmp.find(" ", p);

Previous 199869 Revisions Next


© 1997-2024 The MAME Team