From 6763fab5a3faa4cb4e6724e36154641af768354a Mon Sep 17 00:00:00 2001 From: Andrew Waterman Date: Sat, 25 Jul 2020 17:57:14 -0700 Subject: [PATCH] Add RVV vrgatherei16.vv instruction --- src/main/scala/rocket/Instructions.scala | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main/scala/rocket/Instructions.scala b/src/main/scala/rocket/Instructions.scala index f5aa6eb4d83..57f1c0726aa 100644 --- a/src/main/scala/rocket/Instructions.scala +++ b/src/main/scala/rocket/Instructions.scala @@ -526,6 +526,7 @@ object Instructions { def VOR_VV = BitPat("b001010???????????000?????1010111") def VXOR_VV = BitPat("b001011???????????000?????1010111") def VRGATHER_VV = BitPat("b001100???????????000?????1010111") + def VRGATHEREI16_VV = BitPat("b001110???????????000?????1010111") def VADC_VVM = BitPat("b0100000??????????000?????1010111") def VMADC_VVM = BitPat("b010001???????????000?????1010111") def VSBC_VVM = BitPat("b0100100??????????000?????1010111")