Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Stimulus process
- stim_proc: process
- begin
- iRESET <= '1';
- wait for iCLK_period*3;
- iRESET <= '0';
- iW <= "00";
- wait for iCLK_period;
- iW <= "01";
- wait for iCLK_period*4;
- iW <= "10";
- wait for iCLK_period;
- iW <= "01";
- wait for iCLK_period;
- iW <= "10";
- wait for iCLK_period;
- iW <= "00";
- wait for iCLK_period;
- -- insert stimulus here
- wait;
- end process;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement