Advertisement
Guest User

Untitled

a guest
Jun 30th, 2015
205
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. library IEEE;
  2. use IEEE.Std_Logic_1164.all;
  3.  
  4. entity MyShifter is
  5.  
  6. generic
  7. (
  8. data_width : positive;
  9. pad_width : positive
  10. );
  11.  
  12. port
  13. (
  14. -- ...other ports...
  15. DataIn : in std_logic_vector(data_width-1 downto 0)
  16. );
  17.  
  18. -- architecture follows...
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement