From 7caf71ba711f27c4ebb80eeb027181c0cc73d78d Mon Sep 17 00:00:00 2001 From: Anton Blanchard Date: Wed, 11 Sep 2019 22:40:53 +1000 Subject: [PATCH] Fix issue in loadstore1 We weren't using the register in this stage. Fixes: 819f8200905f ("Register outputs on loadstore1") Signed-off-by: Anton Blanchard --- loadstore1.vhdl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;