Advertisement
Guest User

Untitled

a guest
Mar 31st, 2020
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. x6p: process
  2. begin
  3. x6 <= '0'; wait for 10 ns;
  4. x6 <= '1'; wait for 10 ns;
  5. end process ;
  6. x5p: process
  7. begin
  8. x5 <= '0'; wait for 20 ns;
  9. x5 <= '1'; wait for 20 ns;
  10. end process ;
  11. x4p: process
  12. begin
  13. x4 <= '0'; wait for 40 ns;
  14. x4 <= '1'; wait for 40 ns;
  15. end process ;
  16. x3p: process
  17. begin
  18. x3 <= '0'; wait for 80 ns;
  19. x3 <= '1'; wait for 80 ns;
  20. end process ;
  21. x2p: process
  22. begin
  23. x2 <= '0'; wait for 160 ns;
  24. x2 <= '1'; wait for 160 ns;
  25. end process ;
  26. x1p: process
  27. begin
  28. x1 <= '0'; wait for 320 ns;
  29. x1 <= '1'; wait for 320 ns;
  30. assert false report " End " severity failure ;
  31. end process ;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement