line 436 error message corrected

This commit is contained in:
h_vogt 2009-02-25 22:05:25 +00:00
parent be520381cc
commit 2750b076bb
2 changed files with 8 additions and 1 deletions

View File

@ -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

View File

@ -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);