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:
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;
|
||||
|
||||
Reference in New Issue
Block a user