i am a moron re dly cells

This commit is contained in:
alexmadison 2022-03-02 15:47:36 +01:00
parent c61a570f80
commit 31d2f35042
1 changed files with 5 additions and 3 deletions

View File

@ -104,10 +104,12 @@ namespace tmpl {
export defcell DLY4_X1(bool! y; bool? a, vdd, vss)
{
bool _y;
bool _y, __y, ___y, ____y;
prs {
a => _y-
_y => y-
_y => __y-
__y => ___y-
____y => y-
}
}
@ -272,7 +274,7 @@ namespace tmpl {
export defcell MUX2_X1(bool! y; bool? a, b, s, vdd, vss)
{
// y = !( S ? a : b )
// y = !( S ? b : a )
// Adjusted to fit the XFAB Muxes
bool _s;
bool _y;