1
0
mirror of https://github.com/antonblanchard/microwatt.git synced 2026-01-24 11:11:47 +00:00

Fix issue in execute2

We weren't using the register in this stage.

Fixes: c7aa683ba8aa ("Register outputs on execute2")
Signed-off-by: Anton Blanchard <anton@linux.ibm.com>
This commit is contained in:
Anton Blanchard 2019-09-11 22:39:30 +10:00 committed by Anton Blanchard
parent 8b88e26ece
commit 95442cd62c

View File

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