added 3p pullup

This commit is contained in:
alexmadison 2022-04-10 19:01:51 +02:00
parent 8c8a2eb9a4
commit 1aab499474
1 changed files with 8 additions and 0 deletions

View File

@ -684,6 +684,14 @@ namespace tmpl {
}
}
export
defproc A_3P_U_X4(bool? a, b, c; bool! y; bool? vdd, vss)
{
prs{
[keeper=0] ~a & ~b & ~c-> y+
}
}
export
defproc PULLDOWN_X4(bool? a; bool! y; bool? vdd, vss) {
A_1N_U_X4 cell(.a = a, .y = y, .vdd = vdd, .vss = vss);