inp_get_elem_ident(): enable VDMOS devices as identifier m

This commit is contained in:
Holger Vogt 2019-08-11 17:15:46 +02:00
parent 7f95e9d40c
commit 1adc3e559c
1 changed files with 2 additions and 0 deletions

View File

@ -8154,6 +8154,8 @@ static char inp_get_elem_ident(char *type)
return 'o';
else if (cieq(type, "urc"))
return 'u';
else if (ciprefix("vdmos", type))
return 'm';
/* xspice code models do not have unique type names */
else
return 'a';