Skip to content

Instantly share code, notes, and snippets.

@jorovipe97
Created July 27, 2017 18:02
Show Gist options
  • Save jorovipe97/e526a5f6d1fc50105c8c5abf53637552 to your computer and use it in GitHub Desktop.
Save jorovipe97/e526a5f6d1fc50105c8c5abf53637552 to your computer and use it in GitHub Desktop.
CHIP Or {
IN a, b;
OUT out;
PARTS:
// Put your code here:
Nand(a=a, b=a, out=nanda);
Nand(a=b, b=b, out=nandb);
Nand(a=nanda, b=nandb, out=out);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment