Advertisement
Guest User

Untitled

a guest
Nov 30th, 2015
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.46 KB | None | 0 0
  1. Universal gates:
  2.  
  3. Nand:
  4.  
  5. not B
  6. ========|========
  7. ,-'-,
  8. | |
  9. [nand]
  10. |
  11. ========|========
  12. B
  13.  
  14.  
  15. and B B
  16. ======|===|======
  17. [nand]
  18. [not]
  19. ========|========
  20. B
  21.  
  22.  
  23. or B B
  24. ========|======|=====
  25. [not] [not]
  26. | |
  27. [__nand__]
  28. |
  29. =============|========
  30. B
  31.  
  32. nor B B
  33. ========|=|======
  34. [or]
  35. [not]
  36. ========|========
  37. B
  38.  
  39.  
  40.  
  41.  
  42.  
  43. Nor:
  44.  
  45. not B
  46. ========|========
  47. ,-'-,
  48. | |
  49. [nor]
  50. |
  51. ========|========
  52. B
  53.  
  54. or B B
  55. ======|===|======
  56. [nor]
  57. [not]
  58. ========|========
  59. B
  60.  
  61.  
  62. and B B
  63. ========|======|=====
  64. [not] [not]
  65. | |
  66. [__nor__]
  67. |
  68. =============|========
  69. B
  70.  
  71.  
  72.  
  73.  
  74.  
  75. nand B B
  76. ========|=|======
  77. [and]
  78. [not]
  79. ========|========
  80. B
  81.  
  82.  
  83.  
  84.  
  85. Mux:
  86.  
  87.  
  88. mux B B B
  89. ======|===|===========|=============
  90. ,-'---|-----, |
  91. ,-'-, | | |
  92. [nor] | | |
  93. | | | |
  94. ,-'-, ,-'-, ,-'-, ,-'-,
  95. [nor] [nor] [nor] [nor]
  96. | | | |
  97. [__nor__] [__nor__]
  98. [__nor__]
  99. ,-'-,
  100. | |
  101. [nor]
  102. |
  103. =============|===============
  104. B
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement