From 34ce0b8e89adcdd731045dff0df2d6a71a262480 Mon Sep 17 00:00:00 2001 From: Blaise Tine Date: Tue, 23 Feb 2021 20:54:03 -0800 Subject: [PATCH] minor update --- hw/rtl/VX_decode.v | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/hw/rtl/VX_decode.v b/hw/rtl/VX_decode.v index 33eed10f..00bef998 100644 --- a/hw/rtl/VX_decode.v +++ b/hw/rtl/VX_decode.v @@ -343,8 +343,7 @@ module VX_decode #( is_fpu_no_mem ? `OP_BITS'(fpu_op) : is_lsu ? `OP_BITS'(lsu_op) : is_br ? `OP_BITS'(br_op) : - (is_rtype || is_itype || is_lui || is_auipc) ? `OP_BITS'(alu_op) : - 0; + `OP_BITS'(alu_op); assign decode_if.wb = use_rd && (decode_if.ex_type != `EX_NOP);