entity fredevider5 is
port
( clkin: in std_logic;
clkout: out std_logic
);
end;
architecture behavior of fredevider5 is
signal counter:integer range 0 to 4;
signal temp1,temp2:std_logic;
begin
process(clkin)
begin
if rising_edge(clkin) then
if counter=4 then
counter<=0;
temp1<= not temp1;
else
counter<=counter+1;
end if;
end if;
if falling_edge(clkin) then
if counter=2 then
temp2<= not temp2;
end if;
end if;
clkout<=temp1 xor temp2;
end process;
end;