Bonsoir
Pouvez vous m'aider à comprendre ce code
( il s'agit normalement d'un diviseur de fréquence et d'un compteur mis en cascade)
mais j'ai pas bien saisi les différentes parties du code
merci d'avance
Code:architecture Behavioral of COMPTEUR is signal count : STD_LOGIC_VECTOR (7 downto 0):= "00000000"; signal clk_div : STD_LOGIC_VECTOR (25 downto 0) ; begin DIV : process (CLKIN) begin if rising_edge (CLKIN) then clk_div <= clk_div+1; end if ; end process ; counter: process (clk_div) begin if rising_edge (clk_div(25)) then count <= count+1; end if; end process; s<=count; end Behavioral;
-----