From b19111842e2b518dd8a6609ce3d71723e906ea59 Mon Sep 17 00:00:00 2001 From: Michael Neuling Date: Fri, 6 Sep 2019 15:25:35 +1000 Subject: [PATCH] Reduce Decode2ToMultiplyInit contraints According the verific this reduces primative usage by 0% but could be useful in future. Signed-off-by: Michael Neuling 2 --- common.vhdl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common.vhdl b/common.vhdl index ae53680..be369b5 100644 --- a/common.vhdl +++ b/common.vhdl @@ -63,7 +63,7 @@ package common is data2: std_ulogic_vector(64 downto 0); rc: std_ulogic; end record; - constant Decode2ToMultiplyInit : Decode2ToMultiplyType := (valid => '0', insn_type => OP_ILLEGAL, rc => '0', others => (others => '0')); + constant Decode2ToMultiplyInit : Decode2ToMultiplyType := (valid => '0', insn_type => OP_ILLEGAL, rc => '0', others => (others => '-')); type Decode2ToRegisterFileType is record read1_enable : std_ulogic;