Fix issue in execute2
authorAnton Blanchard <anton@linux.ibm.com>
Wed, 11 Sep 2019 12:39:30 +0000 (22:39 +1000)
committerAnton Blanchard <anton@ozlabs.org>
Wed, 11 Sep 2019 12:39:30 +0000 (22:39 +1000)
We weren't using the register in this stage.

Fixes: c7aa683ba8aa ("Register outputs on execute2")
Signed-off-by: Anton Blanchard <anton@linux.ibm.com>
execute2.vhdl

index c7cf61e0a631daf2eb8c3e9fa7a2506e228a7ba6..79422742af2c920a38c1d45f69b940f8ddda973f 100644 (file)
@@ -52,6 +52,6 @@ begin
                rin <= v;
 
                -- Update outputs
-               e_out <= v;
+               e_out <= r;
        end process;
 end;