/tools/builtInChips/Not16.hdl

https://github.com/hubbazoot/nand2tetris · Unknown · 16 lines · 12 code · 4 blank · 0 comment · 0 complexity · 6c2331cfde124d710bb959738246ed83 MD5 · raw file

  1. // This file is part of www.nand2tetris.org
  2. // and the book "The Elements of Computing Systems"
  3. // by Nisan and Schocken, MIT Press.
  4. // File name: tools/builtIn/Not16.hdl
  5. /**
  6. * 16-bit Not gate: for i = 0..15: out[i] = not in[i]
  7. */
  8. CHIP Not16 {
  9. IN in[16];
  10. OUT out[16];
  11. BUILTIN Not16;
  12. }