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>
pull/33/head
Anton Blanchard 5 years ago committed by Anton Blanchard
parent 2241b71674
commit 9cbdecb561

@ -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;

Loading…
Cancel
Save