From a6b1c6cbee3521b8b0c5bcc6f19a99cd3abbabea Mon Sep 17 00:00:00 2001 From: Alban Gruin <alban.gruin@irit.fr> Date: Tue, 8 Feb 2022 16:54:35 +0100 Subject: [PATCH] fixup! ex_stage, issue_stage: add a dedicated bus for the MULT --- src/ex_stage.sv | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/ex_stage.sv b/src/ex_stage.sv index 87ef8990..402bbb33 100644 --- a/src/ex_stage.sv +++ b/src/ex_stage.sv @@ -225,6 +225,10 @@ module ex_stage import ariane_pkg::*; #( .mult_trans_id_o ( mult_trans_id_o ) ); + assign mult_exception_o.valid = 1'b0; + assign mult_exception_o.cause = '0; + assign mult_exception_o.tval = '0; + // ---------------- // FPU // ---------------- -- GitLab