-------Variablendefinition der entity------ clock, busyadc: in std_logic; ------------------------------------------- -------Programmausschnitt------------------ if rising_edge(clock) then count:=count+1; if count>=0 and count<17 then Anweisung; elsif count=17 and busyadc<='0' then Anweisung; elsif count>17 and count<34 then Anweisung; elsif count>=34 and busyadc<='0' then Anweisung; count:=0; end if; end if; -------------------------------------------------------