Advertisement
Guest User

Untitled

a guest
May 28th, 2015
291
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. Resetas: process
  2. begin
  3. R <= '1'; -- Reset signalas
  4. wait for 2 ns;
  5. R <= '0';
  6. wait;
  7. end process;
  8.  
  9.  
  10.  
  11. Clockas: process
  12. begin
  13. C <= '0'; -- ciklas 5-5 ns
  14. wait for 5 ns;
  15. C <= '1';
  16. wait for 5 ns;
  17. end process;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement