Advertisement
Guest User

Untitled

a guest
Oct 6th, 2015
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. entity spinwheel is
  2. port( fast_clock : IN STD_LOGIC;
  3. resetb : IN STD_LOGIC;
  4. spin_result : OUT UNSIGNED(5 downto 0));
  5. end;
  6.  
  7. component spinwheel is
  8. port( fast_clock : IN STD_LOGIC;
  9. resetb : IN STD_LOGIC;
  10. spin_result : OUT UNSIGNED(5 downto 0));
  11. end component;
  12.  
  13. block1: spinwheel port map(
  14. fast_clock,
  15. KEY(0),
  16. spin_result);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement