Guest User

Untitled

a guest
Sep 21st, 2018
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.15 KB | None | 0 0
  1. TITLE "M2X1";
  2.  
  3. SUBDESIGN mux
  4. (
  5. a, b, sel: INPUT;
  6. result: OUTPUT;
  7. )
  8. BEGIN
  9. IF sel == 0 THEN
  10. result = a;
  11. ELSE
  12. result = b;
  13. END IF;
  14. END;
Add Comment
Please, Sign In to add comment