Four bit adder: Difference between revisions

Content added Content deleted
m (fixed a dumb mistake)
mNo edit summary
Line 1,081:
function not(a) {
if (arePseudoBin(a))
return a === 1 ? 0 : 1;
}