de     

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revisionBoth sides next revision
en:projects:la [2011/07/30 17:12] strijaren:projects:la [2011/07/30 17:21] – [Client] strijar
Line 42: Line 42:
 Here you see the test signals are generated in top.vhd: Here you see the test signals are generated in top.vhd:
  
-  * [0:7] 8-bit counter +  process (clock) begin 
-  * [8] clock +    if rising_edge(clock) then 
-  * [9] simple shift data +      if rst = '1' then 
 +        counter <= (others => '0'); 
 +        shift <= "10110000"; 
 +      else 
 +        counter <= counter + 1; 
 +        shift <= shift(6 downto 0) & shift(7); 
 +      end if; 
 +    end if; 
 +  end process; 
 +   
 +  input(7 downto 0) <= counter; 
 +  input(8) <= clk; 
 +  input(9) <= shift(0);
 
en/projects/la.txt · Last modified: 2017/09/19 10:29 by 188.162.64.48
 
Recent changes RSS feed Creative Commons License Powered by PHP Debian Driven by DokuWiki
[ZTEX Home] [Imprint] [Privacy policy]