Nand Gate
Introduction to Gates, Nand Gate, Implementation of Nand Gate in Hardware Design Language and Java™.
Gate

Nand Gate

Implementation of Nand Gate in Java™
Last updated
Introduction to Gates, Nand Gate, Implementation of Nand Gate in Hardware Design Language and Java™.


Last updated
package CombChips;
import Misc.Convert;
class Nand_Gate {
protected static int Nand(int a, int b) {
boolean bool_a = Convert.Int2Bool(a);
boolean bool_b = Convert.Int2Bool(b);
boolean bool_final = (!bool_a || !bool_b);
return Convert.Bool2Int(bool_final);
}
}