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