Browse Source

line 436 error message corrected

pre-master-46
h_vogt 17 years ago
parent
commit
2750b076bb
  1. 3
      ChangeLog
  2. 6
      src/spicelib/parser/inpdomod.c

3
ChangeLog

@ -1,3 +1,6 @@
2009-02-25 Holger Vogt
* inpdomod.c:436 error message adapted to existing devices
2009-02-25 Dietmar Warning
* spicelib/parser/inp2q.c,155: 5-terminal only for adms bipolars

6
src/spicelib/parser/inpdomod.c

@ -430,7 +430,11 @@ char *INPdomodel(void *ckt, card * image, INPtables * tab)
default: /* placeholder; use level xxx for the next model */
err =
INPmkTemp
("Only MOS device levels 1-6,8,9,14,44,49-52,55-58,62,64 are supported in this binary\n");
#ifdef ADMS
("Only MOS device levels 1-6,8-10,14,44,45,49,54-58,62,64 are supported in this binary\n");
#else
("Only MOS device levels 1-6,8-10,14,49,54-58,62,64 are supported in this binary\n");
#endif
break;
}
INPmakeMod(modname, type, image);

Loading…
Cancel
Save