From: Anton Blanchard Date: Wed, 11 Sep 2019 12:40:53 +0000 (+1000) Subject: Fix issue in loadstore1 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=7caf71ba711f27c4ebb80eeb027181c0cc73d78d;p=microwatt.git Fix issue in loadstore1 We weren't using the register in this stage. Fixes: 819f8200905f ("Register outputs on loadstore1") Signed-off-by: Anton Blanchard --- diff --git a/loadstore1.vhdl b/loadstore1.vhdl index f35b64d..b04ce20 100644 --- a/loadstore1.vhdl +++ b/loadstore1.vhdl @@ -53,6 +53,6 @@ begin rin <= v; -- Update outputs - l_out <= v; + l_out <= r; end process; end;