From 31d2f35042e7ede336e0b6ee1b0b1396850a6c4c Mon Sep 17 00:00:00 2001 From: alexmadison Date: Wed, 2 Mar 2022 15:47:36 +0100 Subject: [PATCH] i am a moron re dly cells --- dataflow_neuro/cell_lib_std.act | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/dataflow_neuro/cell_lib_std.act b/dataflow_neuro/cell_lib_std.act index 370a32f..80af97f 100644 --- a/dataflow_neuro/cell_lib_std.act +++ b/dataflow_neuro/cell_lib_std.act @@ -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;