Advertisement
Lauda

Untitled

Nov 16th, 2012
124
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
VHDL 0.45 KB | None | 0 0
  1.    -- Stimulus process
  2.    stim_proc: process
  3.    begin       
  4.       iRESET <= '1';
  5.         wait for iCLK_period*3;
  6.         iRESET <= '0';
  7.        
  8.         iW <= "00";
  9.         wait for iCLK_period;
  10.        
  11.         iW <= "01";
  12.         wait for iCLK_period*4;
  13.        
  14.         iW <= "10";
  15.         wait for iCLK_period;
  16.        
  17.         iW <= "01";
  18.         wait for iCLK_period;
  19.        
  20.         iW <= "10";
  21.         wait for iCLK_period;
  22.        
  23.         iW <= "00";
  24.         wait for iCLK_period;
  25.  
  26.       -- insert stimulus here
  27.  
  28.       wait;
  29.    end process;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement