1
0
mirror of https://github.com/antonblanchard/microwatt.git synced 2026-03-28 02:33:09 +00:00

Fix a ghdysynth inferred latch error in execute

It should never happen in practise, but ghdlsynth is complaining about
an inferred latch here. Fix it

Signed-off-by: Anton Blanchard <anton@linux.ibm.com>
This commit is contained in:
Anton Blanchard
2020-01-11 13:24:14 +11:00
committed by Anton Blanchard
parent 0a6fd0adb5
commit ad3db18dce

View File

@@ -386,6 +386,7 @@ begin
when "1110" => -- CROR
crresult := (e_in.cr(banum) or e_in.cr(bbnum));
when others =>
crresult := '0';
report "BAD CR?";
end case;
v.e.write_cr_mask := num_to_fxm((31-btnum) / 4);