Advertisement
eimkasp

VHDL TEST

Oct 8th, 2013
150
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
VHDL 0.70 KB | None | 0 0
  1.     x6p : process
  2.  
  3. begin
  4.  
  5. x6 <= '0';
  6.  
  7. wait for 10 ns ;
  8.  
  9. x6 <= '1';
  10.  
  11. wait for 10 ns ;
  12.  
  13. end process ;
  14.  
  15. x5p : process
  16.  
  17. begin
  18.  
  19. x5 <= '0';
  20.  
  21. wait for 20 ns ;
  22. x5 <= '1';
  23.  
  24. wait for 20 ns ;
  25.  
  26. end process ;
  27.  
  28. x4p : process
  29.  
  30. begin
  31.  
  32. x4 <= '0';
  33.  
  34. wait for 40 ns ;
  35.  
  36. x4 <= '1';
  37.  
  38. wait for 40 ns ;
  39.  
  40. end process ;
  41.  
  42. x3p : process
  43.  
  44. begin
  45.  
  46. x3 <= '0';
  47.  
  48. wait for 80 ns ;
  49.  
  50. x3 <= '1';
  51.  
  52. wait for 80 ns ;
  53.  
  54. end process ;
  55.  
  56. x2p : process
  57.  
  58. begin
  59.  
  60. x2 <= '0';
  61.  
  62. wait for 160 ns ;
  63.  
  64. x2 <= '1';
  65.  
  66. wait for 160 ns ;
  67.  
  68. end process ;
  69.  
  70. x1p : process
  71.  
  72. begin
  73.  
  74. x1 <= '0';
  75.  
  76. wait for 320 ns ;
  77.  
  78. x1 <= '1';
  79.  
  80. wait for 320 ns ;
  81.  
  82. assert false report " Pabaiga " severity failure ;
  83.  
  84. end process ;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement