1
0
mirror of https://github.com/antonblanchard/microwatt.git synced 2026-03-10 04:24:30 +00:00

Fix CR forwarding

We weren't actually forwarding writes in the same cycle. Not a
problem right now, but noticed when testing the pipelining series.

Signed-off-by: Anton Blanchard <anton@linux.ibm.com>
This commit is contained in:
Anton Blanchard
2019-09-09 22:16:11 +10:00
committed by Anton Blanchard
parent 2241b71674
commit 9cbdecb561

View File

@@ -55,6 +55,6 @@ begin
if d_in.read = '1' then
report "Reading CR " & to_hstring(crs_updated);
end if;
d_out.read_cr_data <= crs;
d_out.read_cr_data <= crs_updated;
end process;
end architecture behaviour;