chnaged some a cells

This commit is contained in:
Greatorex 2022-04-11 19:28:05 +02:00
parent 7b2484a8a4
commit 77edb22bb6
1 changed files with 8 additions and 8 deletions

View File

@ -27,13 +27,13 @@
namespace tmpl {
namespace dataflow_neuro{
export defcell KEEP (bool y; bool vdd, vss) {
// bool _y;
// prs{
// y => _y-
bool _y;
prs{
y => _y-
// [weak=1] _y -> y-
// [weak=1] ~_y -> y+
// }
}
}
export defcell A_1C2N_RB_X1 (bool! y; bool? c1,n1,n2,pr_B, sr_B; bool vdd, vss) {
@ -661,10 +661,10 @@ namespace tmpl {
}
export
defproc A_2N_U_X4(bool? a, b; bool! y; bool? vdd, vss)
defproc A_2N_U_X4(bool? n1, n2; bool! y; bool? vdd, vss)
{
prs{
[keeper=0] a & b -> y-
[keeper=0] n1 & n2 -> y-
}
}
@ -677,10 +677,10 @@ namespace tmpl {
}
export
defproc A_2P_U_X4(bool? a, b; bool! y; bool? vdd, vss)
defproc A_2P_U_X4(bool? p1, p2; bool! y; bool? vdd, vss)
{
prs{
[keeper=0] ~a & ~b -> y+
[keeper=0] ~p1 & ~p2 -> y+
}
}