Skip to content
Snippets Groups Projects
Commit c00cdb31 authored by Jedian's avatar Jedian
Browse files

inverti a sensibilidade do pc.vhd, agora cada instrucao fica um clock so, mas...

inverti a sensibilidade do pc.vhd, agora cada instrucao fica um clock so, mas pode ter zoado algo diferente

Signed-off-by: default avatarJedian <jmb15@c3sl.ufpr.br>
parent 7336fac0
Branches
No related tags found
No related merge requests found
Pipeline #
...@@ -37,7 +37,7 @@ begin ...@@ -37,7 +37,7 @@ begin
begin begin
if reset = '1' then if reset = '1' then
out_a <= x"00400000"; --para utilizar com o mars out_a <= x"00400000"; --para utilizar com o mars
elsif clk'event and clk = '1' then elsif clk'event and clk = '0' then
out_a <= in_a; out_a <= in_a;
end if; end if;
end process; end process;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment