Merge pull request #377 from antonblanchard/fpu-init

fpu: Reduce uninitialised signals
master
Anton Blanchard 2 years ago committed by GitHub
commit 1047239a37
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -549,6 +549,10 @@ begin
r.do_intr <= '0';
r.fpscr <= (others => '0');
r.writing_back <= '0';
r.dest_fpr <= (others =>'0');
r.cr_mask <= (others =>'0');
r.cr_result <= (others =>'0');
r.instr_tag.valid <= '0';
else
assert not (r.state /= IDLE and e_in.valid = '1') severity failure;
r <= rin;

Loading…
Cancel
Save