home *** CD-ROM | disk | FTP | other *** search
- SAMPLES OF BASIC GATES
-
- Here are basic logic gates written as Boolean equations. See Chapter 2 of
- the reference guide for further discussion.
-
- |PAL12H6 in:(A, B), out:Y[1..6]
- |
- | Y1 = A & B |And
- | Y2 = A # B |Or
- | Y3 = A ## B |Exclusive or
- | Y4 = A' |Not
- | Y5 = (A & B)' |Nand
- | Y6 = (A # B)' |Nor
-
-