added TBUF_X4

This commit is contained in:
alexmadison 2022-04-10 19:02:03 +02:00
parent 1aab499474
commit 5647d4affe
1 changed files with 13 additions and 0 deletions

View File

@ -383,6 +383,19 @@ namespace tmpl {
}
sizing { _en{-2}; y{-2,2} }
}
export defcell TBUF_X4 (bool! y; bool? a, en, vdd, vss)
{
bool _en;
prs {
en => _en-
~a & ~_en -> y+
a & en -> y-
}
sizing { _en{-4}; y{-4,4} }
}
export defproc DFFQ_R_X1 (bool? clk_B, reset_B, d; bool! q,q_B; bool? vdd,vss)
{
bool _clk_B, __clk_B, _mqi,_mqib,_sqi,_sqib;