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

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

index f35b64d4132d90f681b708a5d7a8e3acba8bbbc6..b04ce203a335cdf399d1abc58804fc2d0bcbc000 100644 (file)
@@ -53,6 +53,6 @@ begin
                rin <= v;
 
                 -- Update outputs
-                l_out <= v;
+                l_out <= r;
        end process;
 end;