Ibis: Don't create unnecessary B source

This commit is contained in:
Fabien Corona 2022-11-22 14:21:18 +00:00 committed by Mikolaj Wielgus
parent 5d4b323009
commit 226dc9de78
1 changed files with 2 additions and 1 deletions

View File

@ -434,7 +434,8 @@ std::string KIBIS_MODEL::SpiceDie( KIBIS_PARAMETER& aParam, int aIndex )
result += "BKU POWER " + DIE + " i=( -i(VmeasPU) * v(KU) )\n";
}
result += "BDIEBUFF " + DIEBUFF + " GND v=v(" + DIE + ")\n";
if ( HasPullup() || HasPulldown() )
result += "BDIEBUFF " + DIEBUFF + " GND v=v(" + DIE + ")\n";
return result;
}