Guest User

Untitled

a guest
Jan 24th, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. entity Taipaleenmaki_Nevala_T1_P1 is port
  2. (A,B:in bit;
  3. Y0,Y1,Y2,Y3,Y4,Y5,Y6:out bit);
  4. end Taipaleenmaki_Nevala_T1_P1 ;
  5. architecture Boolean_functions of Taipaleenmaki_Nevala_T1_P1 is
  6. begin
  7. Y0 <= NOT A;
  8. Y1 <= A AND B;
  9. Y2 <= A OR B;
  10. Y3 <= A NAND B;
  11. Y4 <= A NOR B;
  12. Y5 <= A XOR B;
  13. Y6 <= A XNOR B;
  14. end architecture Boolean_functions ;
Add Comment
Please, Sign In to add comment