1
0
mirror of https://github.com/antonblanchard/microwatt.git synced 2026-02-12 02:47:30 +00:00

Fix issue in loadstore1

We weren't using the register in this stage.

Fixes: 819f820090 ("Register outputs on loadstore1")
Signed-off-by: Anton Blanchard <anton@linux.ibm.com>
This commit is contained in:
Anton Blanchard
2019-09-11 22:40:53 +10:00
committed by Anton Blanchard
parent 95442cd62c
commit 7caf71ba71

View File

@@ -53,6 +53,6 @@ begin
rin <= v;
-- Update outputs
l_out <= v;
l_out <= r;
end process;
end;