added pulldown2

This commit is contained in:
alexmadison 2022-03-30 15:16:15 +02:00
parent 87f552b1d0
commit f9cdb2e914
1 changed files with 10 additions and 1 deletions

View File

@ -30,7 +30,9 @@ namespace tmpl {
bool _y;
prs{
y => _y-
[weak=1] _y => y-
[weak=1] _y -> y-
[weak=1] ~_y -> y+
}
sizing {
leak_adjust <- 1;
@ -573,6 +575,13 @@ namespace tmpl {
[keeper=0] a -> y-
}
}
defproc PULLDOWN2_X4(bool? a, b; bool! y; bool? vdd, vss)
{
prs{
[keeper=0] a & b -> y-
}
}
defproc PULLUP_X4(bool? a; bool! y; bool? vdd, vss)
{