From cf3fa9d250dcbc3d0aa0c688a62902f96e195053 Mon Sep 17 00:00:00 2001 From: Alejandro Soto Date: Mon, 17 Oct 2022 01:14:14 -0600 Subject: Fix unsafe decode signals --- rtl/core/decode/decode.sv | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'rtl/core/decode/decode.sv') diff --git a/rtl/core/decode/decode.sv b/rtl/core/decode/decode.sv index 5e72afe..321e972 100644 --- a/rtl/core/decode/decode.sv +++ b/rtl/core/decode/decode.sv @@ -119,7 +119,6 @@ module core_decode data_ctrl = {($bits(data_ctrl)){1'bx}}; snd_ctrl = {$bits(snd_ctrl){1'bx}}; - snd_ctrl.shl = 1; snd_ctrl.shr = 0; snd_ctrl.ror = 0; snd_ctrl.is_imm = 1; @@ -130,6 +129,7 @@ module core_decode snd_ror_if_imm = 1'bx; snd_shift_by_reg_if_reg = 1'bx; + ldst_addr = {($bits(ldst_addr)){1'bx}}; ldst_ctrl = {($bits(ldst_ctrl)){1'bx}}; ldst_ctrl.enable = 0; -- cgit v1.2.3