Talk:Four bit adder: Difference between revisions

Content added Content deleted
m (latch: bugfix)
Line 186: Line 186:
pin_t B= V(b);
pin_t B= V(b);
pin_t C= V(c);
pin_t C= V(c);
V(b)= NOR(V(a),V(c));
V(b)= NOR(V(a),C);
V(c)= NOR(V(b),V(d));
V(c)= NOR(B,V(d));
}
}