T
titi
Guest
Is this an issue that count be affected with two distinct values in the
same rising_edge?
What does happen in such a case?
Illustration:
Signal count : std_logic_vector (7 downto 0);
p_clocks : process (clock,Reset)
begin
if Reset='1' then
count <= x"77";
elsif rising_edge(clock) then
count <= count - '1';
if count = x"00" then
count <= x"77";
....
same rising_edge?
What does happen in such a case?
Illustration:
Signal count : std_logic_vector (7 downto 0);
p_clocks : process (clock,Reset)
begin
if Reset='1' then
count <= x"77";
elsif rising_edge(clock) then
count <= count - '1';
if count = x"00" then
count <= x"77";
....