From: Anton Blanchard Date: Wed, 11 Sep 2019 12:39:30 +0000 (+1000) Subject: Fix issue in execute2 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=95442cd62cc349573cd4985d0b36545b01ea1336;p=microwatt.git Fix issue in execute2 We weren't using the register in this stage. Fixes: c7aa683ba8aa ("Register outputs on execute2") Signed-off-by: Anton Blanchard --- diff --git a/execute2.vhdl b/execute2.vhdl index c7cf61e..7942274 100644 --- a/execute2.vhdl +++ b/execute2.vhdl @@ -52,6 +52,6 @@ begin rin <= v; -- Update outputs - e_out <= v; + e_out <= r; end process; end;